/* style/privacy-policy.css */

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

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

/* Hero Section */
.page-privacy-policy__hero {
    background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Deep red to Gold gradient */
    padding: 80px 0;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #FFD700;
}

.page-privacy-policy__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,subtle_pattern]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-privacy-policy__hero .page-privacy-policy__container {
    position: relative;
    z-index: 1;
}

.page-privacy-policy__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-privacy-policy__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #eee;
}

.page-privacy-policy__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-privacy-policy__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__button--primary {
    background-color: #FFD700; /* Gold */
    color: #8B0000; /* Deep Red */
    border: 2px solid #FFD700;
}

.page-privacy-policy__button--primary:hover {
    background-color: #e6c200;
    color: #6a0000;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-privacy-policy__button--secondary:hover {
    background-color: #FFD700;
    color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Content Section */
.page-privacy-policy__content-section {
    padding: 60px 0;
    background-color: #222;
}

.page-privacy-policy__section-heading {
    font-size: 2.2em;
    color: #FFD700; /* Gold for main headings */
    margin-top: 40px;
    margin-bottom: 20px;
    border-left: 5px solid #8B0000; /* Deep red accent */
    padding-left: 15px;
    font-weight: bold;
}

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

.page-privacy-policy__text {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #f0f0f0;
}

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

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

.page-privacy-policy__list-item strong {
    color: #FFD700; /* Gold for strong text in lists */
}

.page-privacy-policy__image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border: 2px solid #8B0000;
}

.page-privacy-policy__cta-buttons--bottom {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

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

    .page-privacy-policy__text, .page-privacy-policy__list-item {
        font-size: 1em;
    }

    .page-privacy-policy__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-privacy-policy__button {
        padding: 12px 25px;
        font-size: 1em;
        width: 100%;
        max-width: 300px;
    }
}

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

    .page-privacy-policy__hero {
        padding: 50px 0;
    }

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

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

    .page-privacy-policy__container {
        padding: 0 15px;
    }
}