/* style/privacy-policy.css */

/* Base styles for the privacy policy page */
.page-privacy-policy {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #f5e6d0; /* Light text color for dark background */
    background-color: #0A192F; /* Dark primary background */
}

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

.page-privacy-policy__hero {
    background: linear-gradient(135deg, #0A192F 0%, #30475E 100%); /* Gradient with primary color */
    padding: 80px 0;
    text-align: center;
    border-bottom: 2px solid #FFD700; /* Gold accent line */
}

.page-privacy-policy__title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 15px;
    font-weight: 700;
}

.page-privacy-policy__subtitle {
    font-size: 1.2em;
    color: #f5e6d0;
    opacity: 0.9;
}

.page-privacy-policy__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.page-privacy-policy__section--alt-bg {
    background-color: #1A2E44; /* 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: center;
    font-weight: 600;
}

.page-privacy-policy__sub-heading {
    font-size: 1.6em;
    color: #FFD700; /* Gold for sub-headings */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 500;
}

.page-privacy-policy__paragraph {
    font-size: 1em;
    color: #e0e0e0;
    margin-bottom: 15px;
}

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

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

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

.page-privacy-policy__content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .page-privacy-policy__content-grid {
        grid-template-columns: 1fr 1fr;
    }
    .page-privacy-policy__content-grid--reverse {
        grid-template-areas: "image text";
    }
    .page-privacy-policy__content-grid--reverse .page-privacy-policy__text-content {
        grid-area: text;
    }
    .page-privacy-policy__content-grid--reverse .page-privacy-policy__image-wrapper {
        grid-area: image;
    }
}

.page-privacy-policy__image-wrapper {
    text-align: center;
}

.page-privacy-policy__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-privacy-policy__image:hover {
    transform: scale(1.02);
}

.page-privacy-policy__image-centered {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
}

.page-privacy-policy__contact {
    text-align: center;
    background-color: #0A192F;
}

.page-privacy-policy__contact-info {
    font-size: 1.1em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-privacy-policy__cta-wrapper {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-privacy-policy__button {
    display: inline-block;
    background-color: #FFD700; /* Gold button background */
    color: #0A192F; /* 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;
    border: none;
    cursor: pointer;
}

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

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

    .page-privacy-policy__title {
        font-size: 2.2em;
    }

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

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

    .page-privacy-policy__heading {
        font-size: 1.8em;
        margin-bottom: 20px;
    }

    .page-privacy-policy__sub-heading {
        font-size: 1.4em;
    }

    .page-privacy-policy__paragraph,
    .page-privacy-policy__list li {
        font-size: 0.95em;
    }

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

@media (max-width: 480px) {
    .page-privacy-policy__hero {
        padding: 40px 0;
    }

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

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

    .page-privacy-policy__sub-heading {
        font-size: 1.2em;
    }
    .page-privacy-policy__list {
        margin-left: 15px;
    }
}