/* CSS for Privacy Policy Page */

/* Header & Breadcrumb (Consistent with Contact Page) */
.privacy-header {
    background-color: #f5f8fa;
    padding: 120px 0 60px;
    text-align: left;
}

.privacy-breadcrumb {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

/* Hero Logo (Consistent with Contact Page) */
.privacy-hero-wrapper {
    text-align: center;
    padding-bottom: 20px;
}

.privacy-hero-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.privacy-hero-logo .logo-mark {
    color: #004d99;
    font-size: 80px;
    line-height: 1;
    font-weight: bold;
}

.privacy-hero-logo .logo-text {
    color: #000;
    font-size: 80px;
    line-height: 1;
    font-weight: bold;
}

/* Content Section */
.privacy-content-section {
    padding: 60px 0 100px;
    background-color: #f5f8fa;
}

.privacy-section-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: center;
    color: #333;
}

.privacy-container {
    max-width: 800px;
    margin: 0 auto;
    margin: 0 auto;
    /* --- EDIT DESKTOP FONT SIZE HERE --- */
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    padding-left: 20px;
    /* Base padding */
    padding-right: 20px;
}

.privacy-intro {
    margin-bottom: 40px;
}

/* Privacy Blocks */
/* Privacy Blocks */
.privacy-block {
    margin-bottom: 40px;
}

.privacy-heading {
    /* --- EDIT HEADING LEVEL 3 (1. Basic Policy etc) FONT SIZE HERE --- */
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #111;
    margin-left: 0px;
    /* Aligned with text indentation as requested */
}

.privacy-subheading {
    /* --- EDIT HEADING LEVEL 4 ((1) Information etc) FONT SIZE HERE --- */
    font-size: 20px;
    font-weight: normal;
    /* Unbolded as requested */
    margin-top: 20px;
    margin-bottom: 10px;
    color: #333;
    margin-left: 15px;
    /* Also align subheadings if desired, assuming consistency */
}

/* Lists */
.privacy-list {
    list-style-type: disc;
}

.privacy-list-decimal {
    list-style-type: decimal;
}

.privacy-list,
.privacy-list-decimal {
    margin-left: 45px;
    /* USER CONFIGURATION: Indentation for bullet points */
    padding-left: 0;
    margin-bottom: 10px;
}

/* Specific indentation requested */
.privacy-list li,
.privacy-list-decimal li {
    padding-left: 2px;
    /* Visual space between bullet and text */
}

/* Text Paragraphs inside privacy block */
.privacy-block p {
    margin-left: 15px;
    /* USER CONFIGURATION: Indentation for normal text under headings */
}

/* Contact Info Box */
.privacy-contact-info {
    margin-top: 15px;
    /* Removed white box style as requested */
}

.privacy-contact-info p {
    margin-bottom: 5px;
}

.privacy-contact-info a {
    color: #004d99;
    text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .privacy-header {
        padding: 100px 0 40px;
    }

    .privacy-hero-logo {
        gap: 10px;
    }

    .privacy-hero-logo .logo-mark,
    .privacy-hero-logo .logo-text {
        font-size: 40px;
    }

    .privacy-content-section {
        padding: 40px 0 80px;
    }

    .privacy-section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .privacy-container {
        padding: 0 20px;
        /* --- EDIT MOBILE FONT SIZE HERE --- */
        font-size: 15px;
    }

    /* Mobile overrides for headings to prevent them from looking too big */
    .privacy-heading {
        font-size: 18px;
    }

    .privacy-subheading {
        font-size: 16px;
    }
}