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

.page-gdpr__hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background-color: #0A2342; /* Deep Navy Blue */
    color: #FFFFFF; /* White text for contrast */
    overflow: hidden;
    min-height: 400px;
    gap: 40px;
}

.page-gdpr__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    text-align: center;
}

.page-gdpr__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for emphasis */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-gdpr__hero-image-container {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-gdpr__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-gdpr__section {
    padding: 60px 20px;
    text-align: left;
}

.page-gdpr__section--light-bg {
    background-color: #F8F8F8; /* Light background */
    color: #0A2342;
}

.page-gdpr__section--dark-bg {
    background-color: #0A2342; /* Deep Navy Blue */
    color: #FFFFFF;
}

.page-gdpr__section--cta {
    background-color: #1A3A5E; /* Slightly lighter navy for CTA */
    color: #FFFFFF;
    text-align: center;
}

.page-gdpr__container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-gdpr__container--center {
    text-align: center;
}

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #0A2342;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-gdpr__section-title--gold {
    color: #FFD700;
}

.page-gdpr__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-gdpr__paragraph--light {
    color: #E0E0E0;
}

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

.page-gdpr__list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1em;
}

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

.page-gdpr__list--light li {
    color: #E0E0E0;
}

.page-gdpr__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
}

.page-gdpr__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A2342; /* Deep Navy Blue */
    border: 2px solid #FFD700;
}

.page-gdpr__btn--primary:hover {
    background-color: #E0C000; /* Darker Gold */
    border-color: #E0C000;
}

.page-gdpr__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-gdpr__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A2342;
}

.page-gdpr__icon {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 30px auto;
}

.page-gdpr__icon--right {
    float: right;
    margin-left: 30px;
}

.page-gdpr__image-text-group {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.page-gdpr__inline-image {
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Animation for sections */
.page-gdpr__section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.page-gdpr__section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gdpr__hero {
        flex-direction: column;
        padding: 60px 15px;
        text-align: center;
        gap: 30px;
    }
    .page-gdpr__hero-content {
        margin-right: 0;
        margin-bottom: 30px;
    }
    .page-gdpr__hero-title {
        font-size: 2.5em;
    }
    .page-gdpr__hero-description {
        font-size: 1.1em;
    }
    .page-gdpr__hero-image-container {
        width: 250px;
        height: 250px;
    }
    .page-gdpr__section-title {
        font-size: 2.2em;
    }
    .page-gdpr__paragraph {
        font-size: 1em;
    }
    .page-gdpr__list li {
        font-size: 1em;
    }
    .page-gdpr__icon--right {
        float: none;
        margin: 20px auto;
    }
    .page-gdpr__image-text-group {
        flex-direction: column;
        text-align: center;
    }
    .page-gdpr__inline-image {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-title {
        font-size: 2em;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__btn {
        font-size: 1em;
        padding: 10px 20px;
    }
    .page-gdpr__hero-image-container {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero {
        padding: 40px 10px;
    }
    .page-gdpr__hero-title {
        font-size: 1.6em;
    }
    .page-gdpr__hero-description {
        font-size: 0.9em;
    }
    .page-gdpr__section-title {
        font-size: 1.6em;
    }
    .page-gdpr__paragraph {
        font-size: 0.9em;
    }
    .page-gdpr__list li {
        font-size: 0.9em;
    }
    .page-gdpr__btn {
        font-size: 0.9em;
        padding: 8px 15px;
    }
    .page-gdpr__hero-image-container {
        width: 150px;
        height: 150px;
    }
}