/* style/privacy-policy.css */

/* Base styles for the privacy policy page */
.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark grey for body text for good contrast */
    background-color: #f8f8f8; /* Light background */
}

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

/* Hero Section */
.page-privacy-policy__hero {
    background: linear-gradient(135deg, #0A2342, #1A3F6C); /* Darker blue gradient for hero background */
    color: #FFFFFF; /* White text on dark background for high contrast */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 350px;
}

.page-privacy-policy__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-privacy-policy__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    font-weight: bold;
    line-height: 1.2;
}

.page-privacy-policy__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #E0E0E0; /* Light grey for description */
}

.page-privacy-policy__brand-link {
    color: #FFD700; /* Gold for brand links */
    text-decoration: none;
    font-weight: bold;
}

.page-privacy-policy__brand-link:hover {
    text-decoration: underline;
    color: #FFE066; /* Lighter gold on hover */
}

.page-privacy-policy__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2; /* Subtle background image */
    z-index: 1;
}

/* Sections */
.page-privacy-policy__section {
    padding: 60px 0;
    border-bottom: 1px solid #eeeeee;
}

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

.page-privacy-policy__section-title {
    font-size: 2.2em;
    color: #0A2342; /* Deep Navy Blue for section titles */
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-privacy-policy__section p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333333; /* Dark grey for body text */
}

/* Lists */
.page-privacy-policy__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #333333; /* Dark grey for list text */
}

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

.page-privacy-policy__list strong {
    color: #0A2342; /* Deep Navy Blue for strong text in lists */
}

/* Links within content */
.page-privacy-policy__link {
    color: #0A2342; /* Deep Navy Blue for links */
    text-decoration: underline;
    font-weight: 600;
}

.page-privacy-policy__link:hover {
    color: #FFD700; /* Gold on hover for links */
    text-decoration: none;
}

/* Buttons */
.page-privacy-policy__button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FFD700; /* Gold background for buttons */
    color: #0A2342; /* Deep Navy Blue text on gold button for high contrast */
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-privacy-policy__button:hover {
    background-color: #E6C200; /* Slightly darker gold on hover */
    color: #0A2342;
}

/* Image specific styles */
.page-privacy-policy__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-privacy-policy__security-image,
.page-privacy-policy__rights-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-privacy-policy__hero {
        padding: 60px 0;
        min-height: 300px;
    }

    .page-privacy-policy__hero-title {
        font-size: 2.5em;
    }

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

    .page-privacy-policy__section {
        padding: 40px 0;
    }

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

    .page-privacy-policy__section p,
    .page-privacy-policy__list li {
        font-size: 1em;
    }
}

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

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

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

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