/* style/gdpr.css */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #F8F8F8; /* Light text on dark background */
    background-color: #0A244A; /* Primary dark background */
    line-height: 1.6;
}

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

.page-gdpr-hero {
    background: linear-gradient(135deg, #0A244A 0%, #2A4A6A 100%);
    padding: 100px 0;
    text-align: center;
    color: #FFD700; /* Gold for emphasis */
    position: relative;
    overflow: hidden;
}

.page-gdpr-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, rgba(255,215,0,0) 70%);
    animation: page-gdpr-glow 10s infinite alternate;
}

.page-gdpr-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, rgba(255,215,0,0) 70%);
    animation: page-gdpr-glow 10s infinite alternate reverse;
}

@keyframes page-gdpr-glow {
    0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    100% { transform: translate(50px, 50px) scale(1.2); opacity: 0.5; }
}

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

.page-gdpr-subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #F8F8F8;
}

.page-gdpr-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A244A; /* Dark blue text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    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: #E6C200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.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.5em;
    color: #FFD700; /* Gold for section headings */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-gdpr-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

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

.page-gdpr-image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-gdpr-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.page-gdpr-list {
    list-style: none;
    padding: 0;
    margin: 40px 0;
}

.page-gdpr-list li {
    background-color: rgba(255, 215, 0, 0.05);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 10px;
    border-left: 5px solid #FFD700;
    font-size: 1.1em;
    color: #F8F8F8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-gdpr-card {
    background-color: #1A3B5D; /* Darker blue for cards */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.page-gdpr-card:hover {
    transform: translateY(-8px);
    background-color: #2A4A6A;
}

.page-gdpr-card-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-gdpr-card-title {
    font-size: 1.6em;
    color: #FFD700; /* Gold for card titles */
    margin-bottom: 15px;
}

.page-gdpr-card-text {
    font-size: 1em;
    color: #C0C0C0;
}

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

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

.page-gdpr-disclaimer {
    padding: 30px 0;
    text-align: center;
    background-color: #051A33;
    font-size: 0.9em;
    color: #999;
    border-top: 1px solid rgba(255, 215, 0, 0.05);
}

/* Responsive Design */
@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-grid {
        grid-template-columns: 1fr;
    }

    .page-gdpr-list li {
        padding: 15px;
    }

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

@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-text, .page-gdpr-list li, .page-gdpr-card-text {
        font-size: 0.95em;
    }

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

    .page-gdpr-card-icon {
        width: 60px;
        height: 60px;
    }

    .page-gdpr-hero {
        padding: 60px 0;
    }

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