/* style/privacy-policy.css */

/* --- General Page Styling --- */
.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: #f8f8f8; /* Slightly off-white for main content sections */
}

.page-privacy-policy__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-privacy-policy__section-title {
    font-size: 32px;
    color: #003366; /* Main brand color */
    margin-top: 50px;
    margin-bottom: 25px;
    text-align: left;
    font-weight: 700;
}

.page-privacy-policy__section-title--light {
    color: #ffffff; /* White text for dark backgrounds */
}

.page-privacy-policy__subsection-title {
    font-size: 24px;
    color: #003366; /* Main brand color */
    margin-top: 35px;
    margin-bottom: 15px;
    text-align: left;
    font-weight: 600;
}

.page-privacy-policy p {
    margin-bottom: 15px;
    font-size: 16px;
}

.page-privacy-policy__list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    font-size: 16px;
}

.page-privacy-policy__list li {
    margin-bottom: 8px;
}

.page-privacy-policy a {
    color: #003366; /* Main brand color for links */
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-privacy-policy a:hover {
    color: #FFCC00; /* Accent color on hover */
    text-decoration: none;
}

/* --- Hero Section --- */
.page-privacy-policy__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    background: linear-gradient(135deg, #003366, #1a4d80); /* Gradient using main brand color */
    color: #ffffff;
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-privacy-policy__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2; /* Ensure content is above image if layered */
}
}