/* style/privacy-policy.css */
:root {
    --primary-color: #FFD700; /* Gold */
    --secondary-color: #0A2463; /* Dark Blue */
    --text-dark: #333333;
    --text-light: #ffffff;
    --background-light: #f8f8f8;
    --background-dark: #0A2463;
    --button-bg: var(--primary-color);
    --button-text: var(--secondary-color);
    --button-hover-bg: #E6C200; /* Slightly darker gold */
}

.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;
}

.page-privacy-policy-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--background-dark);
    padding: 60px 0;
    text-align: center;
}

.page-privacy-policy-hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-privacy-policy-hero-image {
    width: 100%;
    height: auto;
    max-height: 400px; /* Adjust as needed */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--text-light);
    padding: 0 20px;
}

.page-privacy-policy-hero h1 {
    font-size: 3.2em;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy-hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-privacy-policy-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: var(--button-bg);
    color: var(--button-text);
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

.page-privacy-policy-button:hover {
    background-color: var(--button-hover-bg);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy-section {
    padding: 40px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.page-privacy-policy-section h2 {
    font-size: 2.2em;
    color: var(--secondary-color);
    margin-bottom: 25px;
    text-align: center;
    border-bottom: 3px solid var(--primary-color);
    padding-bottom: 10px;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    text-transform: uppercase;
}

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

.page-privacy-policy-section p {
    font-size: 1.05em;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.page-privacy-policy-section ul {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
}

.page-privacy-policy-section ul li {
    margin-bottom: 10px;
    font-size: 1.05em;
    color: var(--text-dark);
}

.page-privacy-policy-image-content {
    width: 100%;
    max-width: 700px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.page-privacy-policy-contact-cta {
    margin-top: 30px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-privacy-policy-hero {
        padding: 40px 0;
    }
    .page-privacy-policy-hero h1 {
        font-size: 2.5em;
    }
    .page-privacy-policy-hero p {
        font-size: 1em;
    }
    .page-privacy-policy-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-privacy-policy-section h2 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }
    .page-privacy-policy-section h3 {
        font-size: 1.4em;
        margin-top: 25px;
    }
    .page-privacy-policy-section p,
    .page-privacy-policy-section ul li {
        font-size: 0.95em;
    }
    .page-privacy-policy-container {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy-hero h1 {
        font-size: 2em;
    }
    .page-privacy-policy-hero p {
        font-size: 0.9em;
    }
    .page-privacy-policy-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-privacy-policy-section h2 {
        font-size: 1.5em;
    }
    .page-privacy-policy-section h3 {
        font-size: 1.2em;
    }
    .page-privacy-policy-section ul {
        padding-left: 15px;
    }
}