/* style/gdpr.css */

/* Base styles for the GDPR page content */
.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #e5e5e5; /* Light text on dark background for readability */
    background-color: #1A1A1A; /* Dark background */
    padding-bottom: 60px; /* Space for footer */
}

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

/* Hero Section */
.page-gdpr__hero {
    background: linear-gradient(135deg, #1A1A1A 0%, #3a3a3a 100%); /* Darker gradient for hero */
    padding: 80px 0 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
    margin-top: 30px;
}

.page-gdpr__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

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

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

/* General Section Styling */
.page-gdpr__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1); /* Subtle gold separator */
}

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

.page-gdpr__section-title {
    font-size: 2.2em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

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

.page-gdpr strong {
    color: #FFD700; /* Emphasize keywords with gold */
}

/* List styles */
.page-gdpr__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #e5e5e5;
}

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

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

/* Image wrappers */
.page-gdpr__image-wrapper {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-gdpr__image {
    max-width: 80%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

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

/* Links */
.page-gdpr__link {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 215, 0, 0.5);
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-gdpr__link:hover {
    color: #FFF; /* White on hover */
    border-color: #FFD700;
}

/* Call to Action Button */
.page-gdpr__cta {
    text-align: center;
    margin-top: 40px;
}

.page-gdpr__button {
    display: inline-block;
    background-color: #FFD700; /* Gold button background */
    color: #1A1A1A; /* Dark text on gold button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

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

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

    .page-gdpr__subtitle {
        font-size: 1.1em;
    }

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

    .page-gdpr p,
    .page-gdpr__list li {
        font-size: 1em;
    }

    .page-gdpr__hero,
    .page-gdpr__section {
        padding: 40px 0;
    }

    .page-gdpr__button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    
    .page-gdpr__image {
        max-width: 95%;
    }
}

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

    .page-gdpr__subtitle {
        font-size: 0.95em;
    }

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

    .page-gdpr p,
    .page-gdpr__list li {
        font-size: 0.9em;
    }

    .page-gdpr__container {
        padding: 0 15px;
    }

    .page-gdpr__list {
        margin-left: 20px;
    }
}