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

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

.page-gdpr__hero {
    background-color: #0A2342; /* Main color */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    background-image: url('[GALLERY:bg:abstract,data_security,gdpr_compliance]'); /* Background image for hero */
    background-size: cover;
    background-position: center;
    position: relative;
    z-index: 1;
}

.page-gdpr__hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 35, 66, 0.7); /* Overlay for readability */
    z-index: -1;
}

.page-gdpr__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Accent color for title */
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
}

.page-gdpr__section {
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}

.page-gdpr__section:last-of-type {
    border-bottom: none;
}

.page-gdpr__section-title {
    font-size: 2.2em;
    color: #0A2342;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.page-gdpr__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #FFD700; /* Accent line */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-gdpr__content-block p {
    margin-bottom: 15px;
    font-size: 1.1em;
}

.page-gdpr__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
}

.page-gdpr__list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-gdpr__list strong {
    color: #0A2342;
}

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

.page-gdpr__contact-link {
    color: #0A2342;
    text-decoration: underline;
    font-weight: bold;
}

.page-gdpr__contact-link:hover {
    color: #FFD700;
}

.page-gdpr__cta {
    background-color: #0A2342; /* Main color background */
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
}

.page-gdpr__cta-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-gdpr__cta p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
}

.page-gdpr__button {
    display: inline-block;
    background-color: #FFD700; /* Accent color for button */
    color: #0A2342; /* Dark text on accent button for contrast */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

.page-gdpr__button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
    border-color: #e6c200;
}

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

    .page-gdpr__hero-description,
    .page-gdpr__section-title,
    .page-gdpr__content-block p,
    .page-gdpr__list li {
        font-size: 1em;
    }

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

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

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

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

    .page-gdpr__hero-description {
        font-size: 0.9em;
    }

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

    .page-gdpr__list {
        margin-left: 0;
        list-style: none;
    }

    .page-gdpr__list li::before {
        content: '• ';
        color: #FFD700;
        font-weight: bold;
        display: inline-block;
        width: 1em;
        margin-left: -1em;
    }

    .page-gdpr__image {
        margin: 20px auto;
    }

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

    .page-gdpr__cta p {
        font-size: 1em;
    }

    .page-gdpr__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}