/* =============================================
   TERMS & PRIVACY PAGE STYLES
   ============================================= */

.terms-hero-wrapper {
    background-color: #f4f9ff; /* Slightly softer blue */
    padding: 60px 20px;
    text-align: center;
    border-bottom: 1px solid #e1e8ed;
}

.terms-pill {
    display: inline-block;
    background-color: #D5EDFF;
    color: #0065B3;
    font-size: 15px;
    /* font-weight: 600; */
    padding: 8px 36px;
    border-radius: 25px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: default;
}

.terms-pill:hover {
    background-color: #0090FF;
    color: white;
    border-color: #0065B3;
}


.terms-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.terms-hero p {
    color: #555;
    font-size: 18px;
}

.terms-content-section {
    max-width: 900px;
    margin: 20px auto 80px; 
    padding: 0 20px;
}

.terms-block {
    background: #fff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-top: 6px solid #0090FF; /* Primary brand color */
}

.terms-block h2 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #000;
    border-left: 4px solid #D4AF37;
    padding-left: 15px;
}

.terms-block h2:first-of-type {
    margin-top: 0;
}

.terms-block p {
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
    font-size: 18px;
}

.terms-list li {
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    list-style-type: none;
}
/* 
.terms-list li::before {
    content: "\F272";
    font-family: "bootstrap-icons";
    position: absolute;
    left: 0;
    color: #0090FF;
} */

@media (max-width: 768px) {
    .terms-block {
        padding: 30px 20px;
    }
    .terms-hero h1 {
        font-size: 32px;
    }
}