/* style/privacy-policy.css */

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

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

.page-privacy-policy__hero {
    background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Reverse gradient for hero to make it more impactful */
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF; /* White text for hero section */
    position: relative;
    overflow: hidden;
}

.page-privacy-policy__hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float1 10s infinite ease-in-out;
}

.page-privacy-policy__hero::after {
    content: '';
    position: absolute;
    bottom: -70px;
    right: -70px;
    width: 250px;
    height: 250px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    animation: float2 12s infinite ease-in-out;
}

@keyframes float1 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(20px, 20px); }
    100% { transform: translate(0, 0); }
}

@keyframes float2 {
    0% { transform: translate(0, 0); }
    50% { transform: translate(-20px, -20px); }
    100% { transform: translate(0, 0); }
}

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

.page-privacy-policy__intro {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: #F0F0F0;
}

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

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

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

.page-privacy-policy__section--alt-bg {
    background-color: #2a2a2a;
}

.page-privacy-policy__section-title {
    font-size: 2.2em;
    color: #FFD700; /* Gold color for section titles */
    margin-bottom: 30px;
    border-left: 5px solid #8B0000; /* Dark red accent */
    padding-left: 15px;
    font-weight: bold;
}

.page-privacy-policy__section p {
    margin-bottom: 20px;
    color: #E0E0E0;
}

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

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

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

.page-privacy-policy__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__section--cta {
    background: linear-gradient(90deg, #8B0000 0%, #FFD700 100%);
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-privacy-policy__cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-privacy-policy__cta-title {
    font-size: 2.5em;
    color: #FFFFFF;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__cta-description {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #F0F0F0;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    background-color: #1a1a1a; /* Dark button on vibrant background */
    color: #FFD700; /* Gold text */
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 2px solid #FFD700;
}

.page-privacy-policy__cta-button:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #8B0000; /* Dark red text on hover */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-privacy-policy__title {
        font-size: 2.5em;
    }
    .page-privacy-policy__intro {
        font-size: 1em;
    }
    .page-privacy-policy__section-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__cta-title {
        font-size: 2em;
    }
    .page-privacy-policy__cta-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__title {
        font-size: 2em;
    }
    .page-privacy-policy__section-title {
        font-size: 1.5em;
    }
    .page-privacy-policy__cta-title {
        font-size: 1.8em;
    }
    .page-privacy-policy__cta-button {
        padding: 10px 20px;
        font-size: 1em;
    }
    .page-privacy-policy__hero, .page-privacy-policy__section, .page-privacy-policy__section--cta {
        padding: 40px 0;
    }
    .page-privacy-policy__list {
        margin-left: 15px;
    }
}