/* =============================================
   TERMS AND CONDITIONS PAGE
   ============================================= */

.terms-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 80px 40px;
    font-family: var(--font);
}

/* Main heading */
.terms-page h1 {
    color: var(--primary);
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

/* Effective date */
.terms-date {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

/* Intro paragraph */
.terms-page > p {
    color: var(--text);
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 16px;
}

/* Horizontal rule dividers */
.terms-page hr {
    border: none;
    border-top: 1px solid #e0ecff;
    margin: 40px 0;
}

/* Section headings */
.terms-page h2 {
    color: var(--primary);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 16px;
    padding-left: 14px;
    border-left: 4px solid var(--secondary);
    line-height: 1.3;
}

/* Body paragraphs */
.terms-page p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 14px;
}

/* Lists */
.terms-page ul {
    padding-left: 0;
    margin: 0 0 16px 0;
    list-style: none;
}

.terms-page ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.65;
    margin-bottom: 10px;
    padding-left: 4px;
}

.terms-page ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #1ab75b;
    font-size: 0.78rem;
    margin-top: 5px;
    flex-shrink: 0;
}

/* Strong text */
.terms-page strong {
    color: var(--primary);
    font-weight: 700;
}

/* Responsive */
@media screen and (max-width: 992px) {
    .terms-page {
        padding: 60px 30px;
    }
    .terms-page h1 {
        font-size: 2.2rem;
    }
}

@media screen and (max-width: 576px) {
    .terms-page {
        padding: 40px 20px;
    }
    .terms-page h1 {
        font-size: 1.8rem;
    }
    .terms-page h2 {
        font-size: 1.2rem;
    }
    .terms-page p,
    .terms-page ul li {
        font-size: 0.95rem;
    }
}