html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}

.action-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.card {
    flex-basis: calc(50% - 10px);
    background-color: #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

    .card:hover {
        transform: translateY(-5px);
    }

.card-content {
    display: block;
    padding: 20px;
    text-align: center;
    text-decoration: none;
    color: #333;
}

.card h3 {
    margin: 0;
    font-size: 18px;
  
}

.card-title {
    color: #239047;
}


@media (max-width: 768px) {
    .card {w
        flex-basis: 100%;
    }
}

.nav-link {
    display: block;
    padding: 0.5rem 1rem;
    color: #39B808;
    text-decoration: none;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
.bg-primary {
    background-color: #239047 !important; /* Dark Green */
}

.bg-secondary {
    background-color: #39b807 !important; /* Light Green */
}

.text-primary {
    color: #239047 !important; /* Dark Green */
}

.text-secondary {
    color: #39b807 !important; /* Light Green */
}

.text-dark {
    color: #239047 !important; /* Light Green 2 */
}

.text-navgreen {
    color: #239047 !important; /* Grey */
}

.text-light {
    color: #ffffff !important; /* White */
}

.modal {
    width: 450px;
    background: linear-gradient(180deg, #DCF9E0 0%, #FFFFFF 30.21%);
    box-shadow: 0px 187px 75px rgba(0, 0, 0, 0.01), 0px 105px 63px rgba(0, 0, 0, 0.05), 0px 47px 47px rgba(0, 0, 0, 0.09), 0px 12px 26px rgba(0, 0, 0, 0.1), 0px 0px 0px rgba(0, 0, 0, 0.1);
    border-radius: 16px;
}

.banner {
    width: 100%;
    height: 30px;
    margin: 0;
    background-size: 100%;
    background-repeat: no-repeat;
}

.title {
    font-weight: 700;
    font-size: 17px;
    line-height: 21px;
    text-align: center;
    color: #2B2B2F;
    margin-bottom: 15px;
}

.description {
    max-width: 80%;
    margin: auto;
    font-weight: 600;
    font-size: 11px;
    line-height: 16px;
    text-align: center;
    color: #5F5D6B;
}

.tab-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    position: relative;
    padding: 2px;
    background-color: #ebebec;
    border-radius: 9px;
    margin: 10px 20px 0px 20px;
}

.indicator {
    content: "";
    width: 50%;
    height: 28px;
    background: #FFFFFF;
    position: absolute;
    top: 2px;
    left: 2px;
    z-index: 9;
    border: 0.5px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.12), 0px 3px 1px rgba(0, 0, 0, 0.04);
    border-radius: 7px;
    transition: all 0.2s ease-out;
}

.tab {
    width: 50%;
    height: 28px;
    position: relative;
    z-index: 99;
    background-color: transparent;
    border: 0;
    outline: none;
    flex: none;
    align-self: stretch;
    flex-grow: 1;
    cursor: pointer;
    font-weight: 500;
}

.tab--1:hover ~ .indicator {
    left: 2px;
}

.tab--2:hover ~ .indicator {
    left: calc(50% - 2px);
}

.benefits {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

    .benefits > span {
        font-size: 15px;
        color: #2B2B2F;
        font-weight: 700;
    }

    .benefits ul {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

        .benefits ul li {
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 10px;
        }

            .benefits ul li span {
                font-weight: 600;
                font-size: 12px;
                color: #5F5D6B;
            }

.modal--footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-top: 1px solid #ebebec;
}

.price {
    position: relative;
    font-size: 32px;
    color: #2B2B2F;
    font-weight: 900;
}

    .price sup {
        font-size: 13px;
    }

    .price sub {
        width: fit-content;
        position: absolute;
        font-size: 11px;
        color: #5F5D6B;
        bottom: 5px;
        display: inline-block;
    }

.upgrade-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 215px;
    height: 40px;
    background: #0bdd12;
    box-shadow: 0px 0.5px 0.5px #EFEFEF, 0px 1px 0.5px rgba(239, 239, 239, 0.5);
    border-radius: 7px;
    border: 0;
    outline: none;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1);
}

    .upgrade-btn:hover {
        background-color: #07b90d;
    }

.form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.navbar-text {
    color: #39B808;
}
