.page-gdpr {
    background-color: #0D0E12;
    color: #FFF3E6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 20px;
}

.page-gdpr__hero-section {
    display: flex;
    flex-direction: column;
    padding-top: 10px; /* Small top padding, body handles main offset */
    background-color: #100224; /* Darker background for hero */
}

.page-gdpr__hero-visual {
    width: 100%;
    max-height: 675px;
    overflow: hidden;
}

.page-gdpr__hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-gdpr__hero-content {
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-gdpr__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FF8C1A; /* Main brand color for H1 */
}

.page-gdpr__description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #FFF3E6;
}

.page-gdpr__button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #FFF3E6;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background 0.3s ease;
    min-width: 150px;
    text-align: center;
    border: 1px solid #A84F0C;
}

.page-gdpr__button:hover {
    background: linear-gradient(180deg, #FFB04D 0%, #FF8C1A 100%);
}

.page-gdpr__content-area {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    background-color: #17191F;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #FF8C1A;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-top: 20px;
    font-weight: 600;
}

.page-gdpr__text {
    margin-bottom: 20px;
    color: #FFF3E6;
}

.page-gdpr__image-wrapper {
    margin: 30px 0;
    text-align: center;
}

.page-gdpr__image-wrapper img {
    width: 100%;
    max-width: 800px; /* Constrain max width for content images */
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-gdpr__list {
    list-style: disc inside;
    margin-bottom: 30px;
    padding-left: 20px;
    color: #FFF3E6;
}

.page-gdpr__list-item {
    margin-bottom: 10px;
}

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

.page-gdpr__button--contact {
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-gdpr__last-updated {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
    text-align: right;
}

.page-gdpr__text--small {
    font-size: 0.9rem;
    color: #A84F0C;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-gdpr__hero-content {
        padding: 15px;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-gdpr__description {
        font-size: 1rem;
    }
    .page-gdpr__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }
}

@media (max-width: 768px) {
    .page-gdpr__content-area {
        margin: 20px auto;
        padding: 0 15px;
    }
    .page-gdpr__image-wrapper img {
        max-width: 100%;
        height: auto;
    }
    .page-gdpr__button {
        width: 100%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
    .page-gdpr__list {
        padding-left: 15px;
    }
}

@media (max-width: 549px) {
    .page-gdpr__hero-content {
        padding: 10px;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }
    .page-gdpr__description {
        font-size: 0.95rem;
    }
    .page-gdpr__section-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
    }
}