/* style/gdpr.css */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Default text color for light contrast on dark backgrounds */
    background-color: #0A2E50; /* Main background color */
}

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

.page-gdpr-hero {
    background: linear-gradient(135deg, #0A2E50 0%, #0A2E50 70%, #FFD700 100%); /* Dark navy with a hint of gold */
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.page-gdpr-hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr-hero-subtitle {
    font-size: 1.5em;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    color: #e0e0e0;
}

.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-section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.page-gdpr-section p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-gdpr-list {
    list-style-type: disc;
    padding-left: 30px;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-gdpr-list li {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 1.1em;
}

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

.page-gdpr-link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-gdpr-link:hover {
    color: #ffd700cc;
    text-decoration: underline;
}

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

.page-gdpr-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    margin: 10px;
    text-align: center;
}

.page-gdpr-button-primary {
    background-color: #FFD700;
    color: #0A2E50;
    border: 2px solid #FFD700;
}

.page-gdpr-button-primary:hover {
    background-color: #e6c200;
    color: #0A2E50;
    transform: translateY(-2px);
}

.page-gdpr-button-secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-gdpr-button-secondary:hover {
    background-color: #FFD700;
    color: #0A2E50;
    transform: translateY(-2px);
}

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

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

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

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

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

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

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

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

    .page-gdpr-list {
        padding-left: 20px;
    }

    .page-gdpr-button {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }
}