/* style/gdpr.css */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light grey for general text on dark background */
    background-color: #1a1a1a; /* Very dark grey/near black background */
    line-height: 1.6;
    padding-bottom: 50px;
}

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

.page-gdpr__hero {
    background: linear-gradient(135deg, #FFD700, #8B0000);
    padding: 80px 0;
    text-align: center;
    color: #1a1a1a; /* Dark text on gradient background */
}

.page-gdpr__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #1a1a1a; /* Dark text on gradient */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #333; /* Slightly lighter dark text */
}

.page-gdpr__btn {
    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;
    white-space: nowrap;
}

.page-gdpr__btn--primary {
    background-color: #8B0000; /* Dark Red */
    color: #FFD700; /* Gold text */
    border: 2px solid #8B0000;
}

.page-gdpr__btn--primary:hover {
    background-color: #FFD700; /* Gold */
    color: #8B0000; /* Dark Red text */
    border: 2px solid #FFD700;
}

.page-gdpr__btn--secondary {
    background-color: #FFD700; /* Gold */
    color: #8B0000; /* Dark Red text */
    border: 2px solid #FFD700;
}

.page-gdpr__btn--secondary:hover {
    background-color: #8B0000; /* Dark Red */
    color: #FFD700; /* Gold text */
    border: 2px solid #8B0000;
}

.page-gdpr__section {
    padding: 60px 0;
}

.page-gdpr__section--alt-bg {
    background-color: #2a2a2a; /* Slightly lighter dark grey */
}

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for main titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-gdpr__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #8B0000; /* Dark Red underline */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-gdpr__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-gdpr__content-grid--reverse {
    grid-template-areas: "image text";
}

.page-gdpr__content-grid--reverse .page-gdpr__text-block { grid-area: text; }
.page-gdpr__content-grid--reverse .page-gdpr__image-wrapper { grid-area: image; }

.page-gdpr__text-block p {
    margin-bottom: 20px;
    color: #e0e0e0;
}

.page-gdpr__list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-gdpr__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: #e0e0e0;
}

.page-gdpr__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700; /* Gold checkmark */
    font-weight: bold;
}

.page-gdpr__list--numbered {
    list-style: decimal;
    padding-left: 20px;
}

.page-gdpr__list--numbered li::before {
    content: none;
}

.page-gdpr__list--numbered li {
    padding-left: 0;
}

.page-gdpr__image-wrapper {
    text-align: center;
}

.page-gdpr__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

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

.page-gdpr__card {
    background-color: #3a3a3a; /* Darker grey for cards */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.page-gdpr__card:hover {
    transform: translateY(-5px);
}

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

.page-gdpr__card p {
    color: #c0c0c0;
}

.page-gdpr__section--contact {
    text-align: center;
}

.page-gdpr__section--contact .page-gdpr__list {
    display: inline-block;
    text-align: left;
    margin-top: 20px;
    margin-bottom: 30px;
}

.page-gdpr__section--contact .page-gdpr__list li {
    color: #e0e0e0;
}

.page-gdpr__section--conclusion p {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gdpr__hero-title {
        font-size: 2.5em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__content-grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__content-grid--reverse {
        grid-template-areas: none;
    }
    .page-gdpr__content-grid--reverse .page-gdpr__text-block,
    .page-gdpr__content-grid--reverse .page-gdpr__image-wrapper {
        grid-area: unset;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero {
        padding: 60px 0;
    }
    .page-gdpr__hero-title {
        font-size: 2em;
    }
    .page-gdpr__hero-description {
        font-size: 1em;
    }
    .page-gdpr__section {
        padding: 40px 0;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__card-grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-title {
        font-size: 1.8em;
    }
    .page-gdpr__section-title {
        font-size: 1.5em;
    }
    .page-gdpr__btn {
        width: 100%;
        box-sizing: border-box;
    }
}