/* style/gdpr.css */

/* Base styles for the GDPR page */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #F8F8F8; /* Light text for dark background */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
    padding-bottom: 50px;
}

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

.page-gdpr__hero {
    background: linear-gradient(135deg, #8B0000 0%, #FFD700 100%); /* Red to Gold gradient */
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF; /* White text for hero */
}

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

.page-gdpr__subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-gdpr__button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1a1a1a; /* Dark text on gold */
    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-gdpr__button:hover {
    background-color: #b39700; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-gdpr__button--secondary {
    background-color: #8B0000; /* Dark red button */
    color: #FFFFFF; /* White text on dark red */
    margin-top: 20px;
}

.page-gdpr__button--secondary:hover {
    background-color: #6a0000; /* Darker red on hover */
}

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

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

.page-gdpr__heading {
    font-size: 2.5em;
    color: #FFD700; /* Gold heading */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-gdpr__heading::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #8B0000; /* Dark red underline */
    border-radius: 2px;
}

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

.page-gdpr__section strong {
    color: #FFD700;
}

.page-gdpr__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-gdpr__list li {
    background-color: #2a2a2a;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    font-size: 1.1em;
}

.page-gdpr__list li::before {
    content: '✓';
    color: #FFD700; /* Gold checkmark */
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2em;
}

.page-gdpr__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-gdpr__link {
    color: #FFD700; /* Gold link */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-gdpr__link:hover {
    color: #b39700; /* Darker gold on hover */
    text-decoration: underline;
}

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

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

    .page-gdpr__heading {
        font-size: 2em;
    }

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

    .page-gdpr__list li {
        font-size: 1em;
        padding: 12px 15px;
    }
}

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

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

    .page-gdpr__heading {
        font-size: 1.8em;
    }

    .page-gdpr__button {
        padding: 12px 20px;
        font-size: 1em;
    }
}