
/* ==============  TERMS PAGE ======== */

/* --- Dark background & white text for the entire container --- */
.terms-policy {
    background: #111827;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    color: #ffffff;
    max-width: 820px;
    margin: 0 auto;
}

/* --- MAIN TITLE (add this before your first <section>) --- */
.terms-policy .terms-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.3rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
    display: inline-block;
}

/* --- optional subtitle / last updated --- */
.terms-policy .terms-subtitle {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* --- EVERY section inside .terms-policy --- */
.terms-policy section {
    margin-bottom: 2rem;
    padding-bottom: 0;
    border-bottom: none;
}

.terms-policy section:last-of-type {
    margin-bottom: 0;
}

/* --- EVERY h2 inside EVERY section --- */
.terms-policy section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.8rem 0;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    display: inline-block;
}

/* --- EVERY paragraph inside EVERY section --- */
.terms-policy section p {
    font-size: 1rem;
    line-height: 1.7;
    color: #ffffff;
    margin: 0.6rem 0;
}

/* --- EVERY unordered list inside EVERY section --- */
.terms-policy section ul {
    list-style: none;
    padding-left: 0;
    margin: 0.8rem 0 0.3rem 0;
}

/* --- EVERY list item inside EVERY section --- */
.terms-policy section ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #ffffff;
}

/* --- custom bullet — white with slight opacity --- */
.terms-policy section ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.4rem;
    font-weight: 700;
}

/* --- EVERY bold text inside EVERY section --- */
.terms-policy section strong {
    color: #ffffff;
    font-weight: 600;
}

/* --- Email / contact info standout (soft blue accent) --- */
.terms-policy section p strong {
    color: #93c5fd;
}

/* --- Responsive (mobile) --- */
@media (max-width: 600px) {
    .terms-policy {
        padding: 1.5rem 1.2rem;
        border-radius: 8px;
    }
    .terms-policy .terms-title {
        font-size: 1.8rem;
    }
    .terms-policy section h2 {
        font-size: 1.25rem;
    }
}
