/* style/gdpr.css */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light grey for text on dark background */
    background-color: #1A1A1A; /* Very dark background */
}

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

.page-gdpr-hero {
    background: linear-gradient(135deg, #8B0000 0%, #330000 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr-hero::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    filter: blur(80px);
}

.page-gdpr-hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background-color: rgba(255, 215, 0, 0.15);
    border-radius: 50%;
    filter: blur(100px);
}

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

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

.page-gdpr-btn {
    display: inline-block;
    background-color: #FFD700; /* Gold background */
    color: #1A1A1A; /* Dark text for contrast */
    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-btn:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-3px);
}

.page-gdpr-btn-secondary {
    background-color: #8B0000; /* Auxiliary red background */
    color: #FFD700; /* Gold text for contrast */
    border: 2px solid #FFD700;
}

.page-gdpr-btn-secondary:hover {
    background-color: #660000; /* Darker red on hover */
    border-color: #e6c200;
}

.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;
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.3);
}

.page-gdpr-intro p, .page-gdpr-contact p {
    font-size: 1.1em;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #F0F0F0;
}

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

.page-gdpr-card {
    background-color: #282828; /* Slightly lighter dark background for cards */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

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

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

.page-gdpr-card p {
    color: #E0E0E0;
    font-size: 1em;
}

.page-gdpr-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr-list li {
    background-color: #282828;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-left: 5px solid #FFD700; /* Gold accent */
    border-radius: 8px;
    font-size: 1.1em;
    color: #F0F0F0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr-image-inline {
    display: block;
    max-width: 60%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.page-gdpr-image-full-width {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

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

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

    .page-gdpr-section {
        padding: 40px 0;
    }
    .page-gdpr-image-inline {
        max-width: 80%;
    }
}

@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-btn {
        padding: 12px 25px;
        font-size: 1em;
    }

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

    .page-gdpr-list li {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-gdpr-image-inline {
        max-width: 95%;
    }
}