/* style/privacy-policy.css */

/* Variables for colors */
:root {
    --primary-color: #003366; /* Deep Navy Blue */
    --secondary-color: #FFD700; /* Gold */
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f8f8f8;
    --background-dark: #002244; /* Slightly darker than primary for contrast */
    --border-color: #e0e0e0;
}

.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-light);
}

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

/* Hero Section */
.page-privacy-policy__hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #004488 100%); /* Slightly darker gradient */
    color: var(--text-light);
    padding: 80px 20px;
    text-align: center;
}

.page-privacy-policy__title {
    font-size: 3em;
    margin-bottom: 20px;
    color: var(--secondary-color); /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button in Hero */
.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--primary-color); /* Dark text on gold button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

/* General Section Styling */
.page-privacy-policy__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--border-color);
}

.page-privacy-policy__section:last-of-type {
    border-bottom: none;
}

.page-privacy-policy__section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-privacy-policy__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.page-privacy-policy__content-block {
    background-color: var(--text-light);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-privacy-policy__content-block h3 {
    font-size: 1.8em;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    border-left: 5px solid var(--secondary-color);
    padding-left: 15px;
}

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

.page-privacy-policy__content-block ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 15px;
}

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

.page-privacy-policy__content-block a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-privacy-policy__content-block a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

/* Images within content */
.page-privacy-policy__image {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    /* No filter properties to change color */
}

/* Small CTA button (e.g., at end of sections) */
.page-privacy-policy__cta-button--small {
    margin-top: 30px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 12px 25px;
    font-size: 1em;
}

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

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

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

    .page-privacy-policy__content-block {
        padding: 20px;
    }

    .page-privacy-policy__content-block h3 {
        font-size: 1.5em;
        padding-left: 10px;
    }

    .page-privacy-policy__content-block p,
    .page-privacy-policy__content-block ul li {
        font-size: 0.95em;
    }

    .page-privacy-policy__hero {
        padding: 60px 15px;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__title {
        font-size: 1.8em;
    }

    .page-privacy-policy__subtitle {
        font-size: 0.9em;
    }

    .page-privacy-policy__section-title {
        font-size: 1.6em;
    }

    .page-privacy-policy__cta-button {
        padding: 12px 20px;
        font-size: 0.9em;
    }

    .page-privacy-policy__content-block h3 {
        font-size: 1.3em;
    }
}