/* style/gdpr.css */
.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light text for dark background */
    background-color: #1A202C; /* Auxiliary color as main background */
}

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

.page-gdpr-hero {
    background: linear-gradient(135deg, #FFD700, #1A202C);
    padding: 80px 0;
    text-align: center;
    color: #1A202C;
}

.page-gdpr-title {
    font-size: 2.8em;
    color: #1A202C;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-gdpr-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #333;
}

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

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

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

.page-gdpr-heading {
    font-size: 2.2em;
    color: #FFD700; /* Main color for headings */
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}

.page-gdpr-introduction .page-gdpr-heading,
.page-gdpr-contact .page-gdpr-heading {
    color: #FFD700;
}

.page-gdpr-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-gdpr-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 1.05em;
}

.page-gdpr-list li {
    margin-bottom: 10px;
    color: #E0E0E0;
}

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

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

.page-gdpr-btn {
    display: inline-block;
    background-color: #FFD700; /* Main color for buttons */
    color: #1A202C; /* Auxiliary color for button text */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 20px;
    text-align: center;
}

.page-gdpr-btn:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    color: #0d1016;
}

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

    .page-gdpr-subtitle {
        font-size: 1em;
    }

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

    .page-gdpr-text, .page-gdpr-list {
        font-size: 0.95em;
    }

    .page-gdpr-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-gdpr-hero {
        padding: 60px 0;
    }

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

    .page-gdpr-subtitle {
        font-size: 0.9em;
    }

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

    .page-gdpr-section {
        padding: 40px 0;
    }
}