/* style/privacy-policy.css */

/* General Page Styling */
.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for light background */
    background-color: #ffffff; /* Default background */
}

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

/* Hero Section */
.page-privacy-policy__hero-section {
    background: linear-gradient(135deg, #26A9E0, #FFFFFF); /* Primary brand color to white gradient */
    padding: 60px 20px;
    text-align: center;
    color: #ffffff; /* White text for hero section */
    padding-top: var(--header-offset, 120px); /* Explicitly applying offset as per latest rule */
}

.page-privacy-policy__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #ffffff; /* White text for main title */
    line-height: 1.2;
}

.page-privacy-policy__intro-text {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #f0f0f0; /* Slightly off-white for intro text */
}

/* Content Area */
.page-privacy-policy__content-area {
    padding: 60px 0;
    background-color: #f9f9f9; /* Light grey background for content sections */
    color: #333333;
}

.page-privacy-policy__section-title {
    font-size: 2.2em;
    color: #26A9E0; /* Primary brand color for section titles */
    margin-bottom: 30px;
    text-align: center;
    padding-top: 20px;
}

.page-privacy-policy__article-segment {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
}

.page-privacy-policy__article-heading {
    font-size: 1.6em;
    color: #000000; /* Black for sub-headings for strong contrast */
    margin-top: 0;
    margin-bottom: 15px;
    border-bottom: 2px solid #e0e0e0;
    padding-bottom: 10px;
}

.page-privacy-policy p {
    margin-bottom: 15px;
    font-size: 1.05em;
    line-height: 1.7;
}

.page-privacy-policy ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 15px;
    padding: 0;
}

.page-privacy-policy li {
    margin-bottom: 8px;
    font-size: 1.05em;
}

.page-privacy-policy strong {
    color: #000000; /* Black for strong text */
}

.page-privacy-policy__image-content {
    width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Minimum size requirement */
    min-height: 200px; /* Minimum size requirement */
}

/* Contact Info */
.page-privacy-policy__contact-info {
    background-color: #eaf6ff; /* Light blue background for contact info */
    padding: 25px;
    border-radius: 8px;
    margin-top: 40px;
    text-align: center;
    border: 1px solid #26A9E0;
}

.page-privacy-policy__contact-info p {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #000000;
}

.page-privacy-policy__contact-link {
    color: #26A9E0; /* Primary brand color for links */
    text-decoration: none;
    font-weight: bold;
}

.page-privacy-policy__contact-link:hover {
    text-decoration: underline;
    color: #1a7bb0; /* Darker shade on hover */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-privacy-policy__main-title {
        font-size: 2.8em;
    }
    .page-privacy-policy__section-title {
        font-size: 2em;
    }
    .page-privacy-policy__article-heading {
        font-size: 1.4em;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        padding: 40px 15px;
        padding-top: var(--header-offset, 120px) !important; /* Explicitly applying offset for mobile */
    }
    .page-privacy-policy__main-title {
        font-size: 2.2em;
    }
    .page-privacy-policy__intro-text {
        font-size: 1em;
    }
    .page-privacy-policy__content-area {
        padding: 40px 0;
    }
    .page-privacy-policy__container {
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-privacy-policy__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }
    .page-privacy-policy__article-segment {
        padding: 20px;
        margin-bottom: 20px;
    }
    .page-privacy-policy__article-heading {
        font-size: 1.2em;
    }
    .page-privacy-policy p,
    .page-privacy-policy li {
        font-size: 0.95em;
    }

    /* Mobile image adaptation */
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }
    .page-privacy-policy__section,
    .page-privacy-policy__card,
    .page-privacy-policy__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Button adaptation (if any) */
    .page-privacy-policy a[class*="button"],
    .page-privacy-policy a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-privacy-policy__cta-buttons,
    .page-privacy-policy__button-group,
    .page-privacy-policy__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
}

/* Color Contrast Enforcement */
.page-privacy-policy__light-bg {
  color: #333333; /* For light backgrounds, use dark text */
  background: #f9f9f9;
}
.page-privacy-policy__hero-section {
  color: #ffffff; /* For primary brand color background, use white text */
}
.page-privacy-policy__article-heading {
  color: #000000; /* Ensure strong contrast for headings */
}
.page-privacy-policy strong {
  color: #000000; /* Ensure strong contrast for bold text */
}
.page-privacy-policy__contact-link {
  color: #26A9E0; /* Brand color for links, relies on underline for additional contrast */
}