
/* =========================================================
   TERMS & CONDITIONS PAGE
   Same layout style as Privacy Policy
   ========================================================= */


/* =========================================================
   HERO
   ========================================================= */

.terms-hero {
     padding: 90px 0 85px;

    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(0, 152, 70, 0.10),
            transparent 35%
        ),
        linear-gradient(
            135deg,
            #f7fbf9,
            #ffffff
        );

    border-bottom: 1px solid #edf1ef;
}

.terms-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.terms-hero-content {
    max-width: 600px;
}

.terms-hero-content h1 {
    margin: 0 0 20px;

    font-size: clamp(38px, 5vw, 60px);

    line-height: 1.08;

    font-weight: 800;

    letter-spacing: -1.5px;

    color: var(--heading-dark);
}

.terms-hero-content h1 span {
    color: rgb(0, 152, 70);
}

.terms-hero-content p {
    line-height: 1.8;
    max-width: 560px;
}

.terms-updated {
    margin-top: 25px;
}

.terms-updated strong {
    color: rgb(0, 152, 70);
}

.terms-hero-image {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.terms-hero-image img {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
}


/* =========================================================
   MAIN SECTION
   ========================================================= */

.terms-section {
    padding: 80px 0;
}


/* =========================================================
   CONTENT
   ========================================================= */

/*
   No sidebar.
   Content is now one centered full-width column.
*/

.terms-layout {
    display: block;
    width: 100%;
}

.terms-content {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}


/* =========================================================
   CONTENT CARDS
   ========================================================= */

.terms-card {
    padding: 40px;
    margin-bottom: 25px;

    background: #fff;

    border: 1px solid #e9eeeb;

    border-radius: 16px;
}

.terms-card h2 {
    margin: 0 0 22px;

    font-size: 27px;
}

.terms-card h3 {
    margin: 28px 0 12px;

    font-size: 20px;
}

.terms-card p {
    margin-bottom: 17px;

    line-height: 1.85;

    color: #555;
}

.terms-card ul {
    margin: 20px 0;

    padding-left: 24px;
}

.terms-card li {
    margin-bottom: 12px;

    line-height: 1.75;

    color: #555;
}


/* =========================================================
   THIRD PARTY LINKS
   ========================================================= */

.terms-links {
    list-style: none;

    padding-left: 0 !important;
}

.terms-links li {
    margin-bottom: 12px;
}

.terms-links a {
    color: rgb(0, 152, 70);

    font-weight: 600;

    text-decoration: none;
}

.terms-links a:hover {
    text-decoration: underline;
}


/* =========================================================
   EFFECTIVE DATE
   ========================================================= */

.terms-effective-date {
    margin-top: 25px;

    padding: 18px 20px;

    border-left: 4px solid rgb(0, 152, 70);

    background: #f5faf7;

    border-radius: 6px;

    line-height: 1.6;
}


/* =========================================================
   CONTACT CARD
   ========================================================= */

.terms-contact-card {
    display: flex;

    align-items: center;

    gap: 25px;

    padding: 35px 40px;

    margin-top: 10px;

    border-radius: 16px;

    background: #f5faf7;

    border: 1px solid #e2eee6;
}

.terms-contact-icon {
    width: 55px;

    height: 55px;

    flex: 0 0 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: rgb(0, 152, 70);

    color: #fff;

    font-size: 23px;
}

.terms-contact-card h2 {
    margin: 10px 0;
}

.terms-contact-card p {
    margin: 0 0 12px;

    color: #555;

    line-height: 1.7;
}

.terms-email {
    color: rgb(0, 152, 70);

    font-weight: 700;

    text-decoration: none;
}

.terms-email:hover {
    text-decoration: underline;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 900px) {

    .terms-hero-grid {
        gap: 35px;
    }

    .terms-content {
        max-width: 900px;
    }

    .terms-card {
        padding: 30px;
    }

}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 768px) {

    .terms-hero {
        padding: 65px 0;
    }

    .terms-hero-grid {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .terms-hero-content {
        max-width: 100%;
    }

    .terms-hero-content p {
        margin-left: auto;

        margin-right: auto;
    }

    .terms-hero-image {
        justify-content: center;
    }

    .terms-hero-image img {
        max-width: 330px;
    }


    .terms-section {
        padding: 55px 0;
    }


    .terms-layout {
        display: block;
    }


    .terms-content {
        width: 100%;

        max-width: 100%;
    }


    .terms-card {
        padding: 25px 20px;

        border-radius: 12px;
    }

    .terms-card h2 {
        font-size: 23px;
    }

    .terms-card h3 {
        font-size: 19px;
    }

    .terms-card p,
    .terms-card li {
        font-size: 15px;

        line-height: 1.75;
    }


    .terms-contact-card {
        padding: 25px 20px;

        align-items: flex-start;

        gap: 18px;
    }

    .terms-contact-icon {
        width: 45px;

        height: 45px;

        flex-basis: 45px;

        font-size: 19px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .terms-hero {
        padding: 50px 0;
    }

    .terms-hero-image img {
        max-width: 280px;
    }

    .terms-section {
        padding: 40px 0;
    }

    .terms-card {
        padding: 22px 17px;
    }

    .terms-card h2 {
        font-size: 21px;
    }

    .terms-contact-card {
        flex-direction: column;
    }

}

