.page-gdpr {
    color: #333333; /* Dark text for default light body background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-gdpr__hero-section {
    background-color: #003366; /* Deep sea blue primary color */
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.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-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.page-gdpr__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold auxiliary color */
    line-height: 1.2;
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Gold auxiliary color */
    color: #003366; /* Deep sea blue for text */
    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;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__hero-button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

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

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

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

.page-gdpr__heading {
    font-size: 2.5em;
    color: #003366;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-gdpr__heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-gdpr__text {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px;
    color: #555555;
}

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

.page-gdpr__card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-gdpr__card-title {
    font-size: 1.5em;
    color: #003366;
    margin-bottom: 15px;
}

.page-gdpr__card-text {
    font-size: 1em;
    color: #666666;
}

.page-gdpr__content-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    justify-content: center;
}

.page-gdpr__content-flex--reverse {
    flex-direction: row-reverse;
}

.page-gdpr__image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    display: block;
}

.page-gdpr__image--right {
    margin-left: 20px;
}

.page-gdpr__image--left {
    margin-right: 20px;
}

.page-gdpr__image--center {
    margin: 0 auto 30px auto;
    max-width: 600px;
}

.page-gdpr__list {
    flex: 1;
    min-width: 300px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-gdpr__list-item {
    background-color: #f9f9f9;
    border-left: 5px solid #003366;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 1.05em;
    color: #444444;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-gdpr__list-item strong {
    color: #003366;
}

.page-gdpr__link {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-gdpr__link:hover {
    color: #FFD700;
    text-decoration: underline;
}

.page-gdpr__button {
    display: inline-block;
    background-color: #003366;
    color: #ffffff;
    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;
    margin: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__button:hover {
    background-color: #004488;
    transform: translateY(-2px);
}

.page-gdpr__button--secondary {
    background-color: #FFD700;
    color: #003366;
}

.page-gdpr__button--secondary:hover {
    background-color: #e6c200;
    color: #003366;
}

.page-gdpr__faq-item {
    background-color: #f0f4f8;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
}

.page-gdpr__faq-question {
    font-size: 1.3em;
    color: #003366;
    margin-bottom: 10px;
}

.page-gdpr__faq-answer {
    font-size: 1em;
    color: #555555;
}

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

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

    .page-gdpr__heading {
        font-size: 2em;
    }

    .page-gdpr__grid {
        grid-template-columns: 1fr;
    }

    .page-gdpr__content-flex {
        flex-direction: column;
    }

    .page-gdpr__content-flex--reverse {
        flex-direction: column;
    }

    .page-gdpr__image {
        margin: 0 auto 20px auto !important; /* Override specific margins */
        max-width: 100%;
        height: auto;
    }

    .page-gdpr__image--right,
    .page-gdpr__image--left {
        margin: 0 auto 20px auto;
    }

    .page-gdpr__list-item {
        font-size: 0.95em;
    }

    .page-gdpr__hero-image,
    .page-gdpr__image,
    .page-gdpr__card img {
        max-width: 100%;
        height: auto;
    }
}

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

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

    .page-gdpr__heading {
        font-size: 1.8em;
    }

    .page-gdpr__text {
        font-size: 0.95em;
    }

    .page-gdpr__card {
        padding: 20px;
    }

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

    .page-gdpr__faq-question {
        font-size: 1.1em;
    }
}