body {
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e3f1ed;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 30px auto;
    padding-inline: 20px;
    padding-top: 5rem;
    border-radius: 8px;
}

h1, h2 {
    text-align: center;
    color: #e8eaed;
}

h1 {
    font-weight: 700;
    font-size: 3em;
    margin-bottom: 5px;
}

h2 {
    font-size: 1.5em;
    margin-bottom: 30px;
}

.product-title {
    text-align: center;
    font-weight: 800;
    color: #027223;
    font-size: 4em;
}

.product-subtitle {
    text-align: center;
    font-weight: 600;
    font-size: 1.6em;
}

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-around;
}

.card-title {
    font-weight: 700;
    color: #027223;
    font-size: 2.6em;
}

.card-content {
    margin-top: 1rem;
    font-size: 1.2em;
    font-weight: 500;
    line-height: 1.5;
}

.card-footer {
    margin-top: 1rem;
}

.section {
    margin-top: 2em;
}

.section-title {
    text-align: center;
    font-weight: 750;
    color: #027223;
    font-size: 3.2em;
    margin-bottom: 1em;
}

.row-flex {
    margin-top: 4em;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: auto;
    height: auto;
    gap: 20px;
}

.flex-item {
    padding: 1rem;
}

.image-carousel {
    background-image: url("assets/images/product/process0.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    box-shadow: 1px 1px 5px 0px #000000;
    border-radius: 12px;
    width: auto;
    height: 350px;
    padding: 25px;
    transition: all 1000ms ease-out;
    position: relative;
}

.image-carousel:hover {
    opacity: 0.8;
    cursor: pointer;
}

.feature-card {
    background: linear-gradient(#027223FF, #008326);
    padding: 1rem;
    border-radius: 6px;
    border: 1px solid green;
    line-height: 1.6em;
    box-shadow: 1px 1px 5px 0px #000000;
}

.feature-card::before {
    content: "✔";
    font-size: 1.5em;
    color: #ffffff;
    margin-right: 1rem;
}

.feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    display: grid;
    gap: 15px;
    color: white;
    font-size: 1.4em;
}

.button, .pricing-button {
    color: whitesmoke;
    text-align: center;
    background: #027223FF;
    display: inline-block;
    font-weight: 400;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: .75rem 1.25rem;
    font-size: 1.4rem;
    line-height: 1.5;
    border-radius: .25rem;
    cursor: pointer;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.button:hover, .pricing-button:hover {
    background: #039f31;
    cursor: pointer;
}
.pricing-button {
  padding-top:0.75em;
  padding-bottom: 0.75em;
  padding-left: 0;
  padding-right: 0;
    width:100%;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2rem;
}

th, td {
    border: 1px solid rgba(221, 221, 221, 0.66);
    padding: 0.8em;
    text-align: left;
}

th {
    background: linear-gradient(#045502, #066304);
    color: white;
    font-weight: 600;
}

tr:nth-child(odd) {
    background-color: #52c350;
}

tr:nth-child(even) {
    background-color: #73d171;
}

tr:hover {
    background-color: #66cf64;
}

.plan-header {
    flex:1;
    padding: 0.5em;
    color: white;
    font-size: 1.6em;
}

.plan-price {
    display: flex;
    justify-content: center;
    font-size: 1.2em;
}

.plan-price-currency {
    font-size: 0.4em;
    font-weight: 600;
    vertical-align: top;
}

.plan-price-value {
    font-weight: 600;
    font-size: 1em;
}

.plan-price-description {
  align-content: flex-end;
    font-size: 0.5em;
}

.table-header {
    padding-top: 2em;
    box-shadow: 0px -1px 3px black;
    text-align: center;
    background: #027223FF;
    border-radius: 16px 16px 0 0;
}

.plan-feature-header {
    white-space: nowrap;
    background: linear-gradient(#045502, #066304);
    color: white;
    font-weight: 600;
}

.plan-feature-enabled, .plan-feature-disabled {
    text-align: center;
}

.plan-feature-enabled::before {
    content: "✔";
    color: white;
    text-shadow: 1px 1px 2px black;
    font-size: 1.7em;
}

.plan-feature-disabled::before {
    content: "🞬";
    color: white;
    text-shadow: 1px 1px 2px black;
    font-size: 1.7em;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 700px;
    text-align: center;
}

.modal-content img {
    width: 100%;
    height: auto;
    display: block;
}

.image-modal-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 4em;
    color: white;
    cursor: pointer;
    padding: 10px;
    z-index: 1;
}

.image-modal-arrow.left {
    left: 20px;
}

.image-modal-arrow.right {
    right: 20px;
}

#magic-ball-list {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 10px;
    bottom: 10px;
}

.magic-ball {
    background: linear-gradient(#04af00, #045502);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid black;
    cursor: pointer;
    opacity: 0.5;
}

.magic-ball.active {
    opacity: 1;
}
/*[aria-hidden="true"] {*/
/*    user-select: none;*/
/*}*/

/*.visually-hidden {*/
/*    position: absolute !important;*/
/*    width: 1px !important;*/
/*    height: 1px !important;*/
/*    padding: 0 !important;*/
/*    margin: -1px !important;*/
/*    overflow: hidden !important;*/
/*    clip: rect(0, 0, 0, 0) !important;*/
/*    white-space: nowrap !important;*/
/*    border: 0 !important;*/
/*}*/

@media (max-width: 768px) {
  .container {
    width:98%;
    padding-inline: 5px;
  }

    .row-flex {
        flex-direction: column;
    }
    .plan-feature-header {
      font-size: 0.8em;
    }

  .plan-price-description {
      font-size: 0.6em;
    }

  .plan-price-value {
      font-size: 1em;
    }

    .plan-price-currency {
      display: none;
    }


    .image-carousel {
        height: 250px;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }
    .plan-price {
        flex-direction: column;
        align-items: center;
    }
}
