/* style/privacy-policy.css */

/* Base Styles for the Privacy Policy Page */
.page-privacy-policy {
    color: #333333; /* Dark text for default light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

/* Hero Section */
.page-privacy-policy__hero-section {
    position: relative;
    padding: 80px 20px 40px; /* Adjusted padding, header offset is handled by main */
    text-align: center;
    background-color: #f8f8f8; /* Light background for hero */
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-privacy-policy__hero-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-privacy-policy__hero-title {
    font-size: 2.8em;
    color: #CC3333; /* Main brand color */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.page-privacy-policy__hero-description {
    font-size: 1.2em;
    color: #555555;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-privacy-policy__button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    cursor: pointer;
    white-space: nowrap; /* Prevent text wrapping */
}

.page-privacy-policy__button--primary {
    background-color: #CC3333; /* Main brand color */
    color: #ffffff;
    border: 2px solid #CC3333;
}

.page-privacy-policy__button--primary:hover {
    background-color: #a02828;
    transform: translateY(-2px);
}

.page-privacy-policy__button--secondary {
    background-color: #FFCC00; /* Auxiliary brand color */
    color: #333333;
    border: 2px solid #FFCC00;
}

.page-privacy-policy__button--secondary:hover {
    background-color: #e6b800;
    transform: translateY(-2px);
}

.page-privacy-policy__hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 40px auto 0;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Content Area */
.page-privacy-policy__content-area {
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 20px;
    background-color: #ffffff; /* White background for readability */
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.page-privacy-policy__section-title {
    font-size: 2em;
    color: #CC3333; /* Main brand color */
    margin-top: 40px;
    margin-bottom: 25px;
    border-bottom: 2px solid #FFCC00; /* Auxiliary color for emphasis */
    padding-bottom: 10px;
    position: relative;
}

.page-privacy-policy__section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 60px;
    height: 2px;
    background-color: #CC3333;
}

.page-privacy-policy__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333333;
}

.page-privacy-policy__list {
    list-style-type: disc;
    margin-left: 30px;
    margin-bottom: 20px;
    color: #333333;
}

.page-privacy-policy__list-item {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-privacy-policy__list-item strong {
    color: #CC3333; /* Emphasize list item headings */
}

.page-privacy-policy__link {
    color: #CC3333; /* Main brand color for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-privacy-policy__link:hover {
    color: #FFCC00; /* Auxiliary brand color on hover */
    text-decoration: underline;
}

.page-privacy-policy__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

/* Call to Action Section */
.page-privacy-policy__cta-section {
    text-align: center;
    background-color: #f8f8f8; /* Light background for CTA */
    padding: 60px 20px;
    margin-top: 50px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.page-privacy-policy__cta-title {
    font-size: 2.2em;
    color: #CC3333;
    margin-bottom: 20px;
}

.page-privacy-policy__cta-description {
    font-size: 1.1em;
    color: #555555;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-privacy-policy__hero-title {
        font-size: 2em;
    }

    .page-privacy-policy__hero-description {
        font-size: 1em;
    }

    .page-privacy-policy__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-privacy-policy__button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-privacy-policy__content-area {
        padding: 30px 15px;
    }

    .page-privacy-policy__section-title {
        font-size: 1.7em;
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .page-privacy-policy__paragraph,
    .page-privacy-policy__list-item {
        font-size: 1em;
    }

    .page-privacy-policy__list {
        margin-left: 20px;
    }

    .page-privacy-policy__cta-title {
        font-size: 1.8em;
    }

    .page-privacy-policy__cta-description {
        font-size: 1em;
    }

    /* Mobile image responsiveness */
    .page-privacy-policy__hero-image,
    .page-privacy-policy__image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum size */
        min-height: 200px; /* Enforce minimum size */
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__hero-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__section-title {
        font-size: 1.5em;
    }
    .page-privacy-policy__cta-title {
        font-size: 1.6em;
    }
}