.page-gdpr {
    background-color: #100224;
    color: #FFFFFF;
    font-family: Arial, sans-serif;
}

.page-gdpr__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 40px; /* Space below content */
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    max-height: 675px;
    object-fit: cover;
    display: block;
}

.page-gdpr__hero-content {
    padding: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.page-gdpr__main-title {
    font-size: clamp(2em, 4vw, 3.2em);
    font-weight: 700;
    line-height: 1.2;
    margin-top: 20px;
    margin-bottom: 15px;
    color: #26A9E0;
}

.page-gdpr__description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__contact-button,
.page-gdpr__support-button {
    display: inline-block;
    background-color: #EA7C07;
    color: #FFFFFF;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.page-gdpr__contact-button:hover,
.page-gdpr__support-button:hover {
    background-color: #d46b06;
}

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

.page-gdpr__intro-section,
.page-gdpr__rights-section,
.page-gdpr__contact-info-section {
    padding: 60px 0;
    text-align: center;
}

.page-gdpr__intro-section {
    background-color: #1a083d;
}

.page-gdpr__rights-section {
    background-color: #100224;
}

.page-gdpr__contact-info-section {
    background-color: #1a083d;
}

.page-gdpr__section-title {
    font-size: clamp(1.8em, 3.5vw, 2.5em);
    color: #26A9E0;
    margin-bottom: 30px;
    font-weight: 600;
}

.page-gdpr__text {
    font-size: 1em;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 20px auto;
}

.page-gdpr__text--small {
    font-size: 0.9em;
    opacity: 0.8;
    margin-top: 20px;
}

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

.page-gdpr__right-card {
    background-color: #1a083d;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-gdpr__card-image {
    width: 100%;
    height: auto;
    max-width: 400px;
    border-radius: 5px;
    margin-bottom: 15px;
    object-fit: cover;
}

.page-gdpr__card-title {
    font-size: 1.4em;
    color: #FFFFFF;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-gdpr__card-text {
    font-size: 0.95em;
    line-height: 1.6;
    color: #e0e0e0;
}

@media (max-width: 768px) {
    .page-gdpr__hero-content {
        padding: 15px;
    }

    .page-gdpr__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
    }

    .page-gdpr__description {
        font-size: 1em;
    }

    .page-gdpr__section-title {
        font-size: clamp(1.6em, 6vw, 2em);
    }

    .page-gdpr__intro-section,
    .page-gdpr__rights-section,
    .page-gdpr__contact-info-section {
        padding: 40px 0;
    }

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

    .page-gdpr__hero-section img,
    .page-gdpr__intro-section img,
    .page-gdpr__rights-section img,
    .page-gdpr__contact-info-section img,
    .page-gdpr__right-card img {
        max-width: 100% !important;
        height: auto !important;
    }

    .page-gdpr__card-image {
        width: 100%;
        max-width: 400px; /* Ensure it doesn't get too small if parent is wider */
    }
    
    /* Content area image CSS size check */
    .page-gdpr__hero-image,
    .page-gdpr__card-image {
        min-width: 200px; /* Ensure minimum size */
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-gdpr__main-title {
        font-size: clamp(1.6em, 8vw, 2.2em);
    }

    .page-gdpr__contact-button,
    .page-gdpr__support-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}