/* style/gdpr.css */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0;
    background-color: #0A192F;
    line-height: 1.6;
}

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

.page-gdpr-hero {
    position: relative;
    color: #FFFFFF;
    text-align: center;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0A192F, #1A3A60);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.page-gdpr-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.page-gdpr-hero .page-gdpr-container {
    position: relative;
    z-index: 1;
}

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

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

.page-gdpr-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.page-gdpr-btn-primary:hover {
    background-color: #E6C200;
    border-color: #E6C200;
    transform: translateY(-2px);
}

.page-gdpr-btn-secondary {
    background-color: #0A192F;
    color: #FFD700;
    border: 2px solid #FFD700;
}

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

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

.page-gdpr-btn-outline:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
}

.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-section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-gdpr-section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #FFD700;
}

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

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

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

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

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

.page-gdpr-principle-item {
    background-color: #1A2B40;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr-principle-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-gdpr-principle-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-gdpr-list {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}

.page-gdpr-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-gdpr-list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-size: 1.2em;
    line-height: 1;
}

.page-gdpr-image-fullwidth {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr-action-buttons {
    text-align: center;
    margin-top: 40px;
}

.page-gdpr-action-buttons .page-gdpr-btn {
    margin: 0 15px;
}

.page-gdpr-footer-note {
    text-align: center;
    padding: 30px 0;
    font-size: 0.9em;
    color: #A0A0A0;
}

.page-gdpr-text-small {
    font-size: 0.9em;
    color: #A0A0A0;
}

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

    .page-gdpr-principle-item {
        padding: 20px;
    }

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

    .page-gdpr-action-buttons .page-gdpr-btn {
        display: block;
        margin: 15px auto;
        width: 80%;
    }
}

@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-text {
        font-size: 1em;
    }

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