/* ===== LEGAL PAGE HEADER ===== */
.legal-page-header {
    background-color: #0b1a2e;
    padding: 30px 50px 40px 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Breadcrumb */
.legal-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 15px;
}

.legal-breadcrumb a {
    color: #c8d6e8;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.legal-breadcrumb a:hover {
    color: #f5a623;
}

.breadcrumb-sep {
    color: #6b7f9e;
}

.breadcrumb-current {
    color: #ffffff;
    font-weight: 700;
}

/* Title */
.legal-title {
    color: #ffffff;
    font-size: 45px;
    font-weight: 900;
    margin-bottom: 14px;
}

/* Subtitle */
.legal-subtitle {
    color: #8fa3c0;
    font-size: 17px;
    line-height: 1.6;
    max-width: 750px;
    margin-bottom: 16px;
}

/* Last updated */
.legal-updated {
    color: #6b7f9e;
    font-size: 14px;
    margin-bottom: 0;
}

.legal-text {
    color: #f5a623;
}

/* ===== LEGAL CONTENT SECTION ===== */
.legal-content-section {
    background: linear-gradient(180deg, #0b1a2e 0%, #1a2740 100%);
    padding: 40px 50px 70px 50px;
}

.legal-content-wrap {
    max-width: 1100px;
}

/* Paragraphs */
.legal-para {
    color: #c8d6e8;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-para strong {
    color: #ffffff;
    font-weight: 700;
}

/* Section headings */
.legal-heading {
    color: #f5a623;
    font-size: 26px;
    font-weight: 800;
    margin-top: 36px;
    margin-bottom: 18px;
}

/* Sub-headings */
.legal-subheading {
    color: #ffffff;
    font-size: 19px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 12px;
}

/* Lists */
.legal-list {
    list-style: disc;
    padding-left: 22px;
    margin: 0 0 20px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal-list li {
    color: #c8d6e8;
    font-size: 16px;
    line-height: 1.75;
}

.legal-list li strong {
    color: #ffffff;
    font-weight: 700;
}

/* Inline "Last updated" inside content section, matching white card design */
.legal-updated-inline {
    color: #6b7f9e;
    font-size: 14px;
    margin-bottom: 16px;
}

/* Divider under last-updated line */
.legal-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin-bottom: 28px;
}

.legal-inline-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.legal-inline-link:hover {
    color: #f5a623;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
    .legal-page-header {
        padding: 24px 20px 30px 20px;
    }

    .legal-content-section {
        padding: 30px 20px 50px 20px;
    }

    .legal-title {
        font-size: 32px;
    }

    .legal-subtitle {
        font-size: 15px;
    }
}

@media (max-width: 767px) {
    .legal-title {
        font-size: 24px;
    }

    .legal-heading {
        font-size: 20px;
    }

    .legal-subheading {
        font-size: 16px;
    }

    .legal-para,
    .legal-list li {
        font-size: 14px;
    }
}