/* style/privacy-policy.css */

/* Base styles for the privacy policy page */
.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #f0f0f0; /* Light grey for text on dark background */
    background-color: #0A192F; /* Main dark background */
}

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

/* Hero Section */
.page-privacy-policy__hero {
    background: linear-gradient(135deg, #0A192F, #1e3a5f); /* Subtle gradient for hero */
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-privacy-policy__subtitle {
    font-size: 1.2em;
    color: #c0c0c0;
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-privacy-policy__subtitle a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-privacy-policy__subtitle a:hover {
    text-decoration: underline;
}

.page-privacy-policy__hero-image {
    max-width: 50%;
    height: auto;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

.page-privacy-policy__section--alt {
    background-color: #1a2a43; /* Slightly lighter dark background for contrast */
}

.page-privacy-policy__heading {
    font-size: 2.2em;
    color: #FFD700; /* Gold for section headings */
    margin-bottom: 25px;
    text-align: left;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
    display: inline-block; /* To make border-bottom only under text */
}

.page-privacy-policy p {
    margin-bottom: 15px;
    color: #f0f0f0;
}

.page-privacy-policy .keyword {
    color: #FFD700; /* Highlight keywords */
    font-weight: bold;
}

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

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

.page-privacy-policy__list li strong {
    color: #FFD700;
}

.page-privacy-policy__section a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-privacy-policy__section a:hover {
    text-decoration: underline;
}

.page-privacy-policy__image {
    max-width: 80%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Call to Action Section */
.page-privacy-policy__contact-cta {
    background: linear-gradient(90deg, #0A192F, #1e3a5f);
    text-align: center;
    padding: 80px 0;
}

.page-privacy-policy__cta-content {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A192F; /* Dark blue text on button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

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

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

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

    .page-privacy-policy__hero-image,
    .page-privacy-policy__image {
        max-width: 90%;
    }

    .page-privacy-policy__cta-content {
        padding: 30px 20px;
    }
}

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

    .page-privacy-policy__heading {
        font-size: 1.5em;
    }

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

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

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