/* style/gdpr.css */

/* General page styling */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for text on dark background */
    line-height: 1.6;
    background-color: #1A2035; /* Primary dark background */
}

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

.page-gdpr-hero {
    background: linear-gradient(135deg, #1A2035 0%, #3a486e 100%); /* Dark blue gradient */
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-gdpr-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr-subtitle {
    font-size: 1.2em;
    color: #CCCCCC; /* Lighter grey for subtitle */
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-gdpr-section {
    padding: 40px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gdpr-section:last-of-type {
    border-bottom: none;
}

.page-gdpr-alt-bg {
    background-color: #262D47; /* Slightly lighter dark blue for contrast */
}

.page-gdpr-heading {
    font-size: 2em;
    color: #FFD700; /* Gold for section headings */
    margin-bottom: 25px;
    text-align: left;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

.page-gdpr-paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-gdpr-paragraph strong {
    color: #FFD700;
}

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

.page-gdpr-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-gdpr-list li strong {
    color: #FFD700;
}

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

.page-gdpr-cta {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
}

.page-gdpr-btn {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A2035; /* 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;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.page-gdpr-btn:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-2px);
}

/* JS animation classes */
.page-gdpr-heading.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr-title {
        font-size: 2.2em;
    }
    .page-gdpr-subtitle {
        font-size: 1em;
        padding: 0 10px;
    }
    .page-gdpr-heading {
        font-size: 1.8em;
        padding-left: 10px;
    }
    .page-gdpr-paragraph, .page-gdpr-list li {
        font-size: 1em;
    }
    .page-gdpr-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-gdpr-title {
        font-size: 1.8em;
    }
    .page-gdpr-heading {
        font-size: 1.5em;
    }
    .page-gdpr-container {
        padding: 15px;
    }
    .page-gdpr-hero {
        padding: 40px 0;
    }
    .page-gdpr-section {
        padding: 30px 0;
    }
    .page-gdpr-image {
        max-width: 95%;
    }
}