.page-gdpr {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: sans-serif;
}

.page-gdpr__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding to avoid header overlap */
    padding-bottom: 40px;
    text-align: center;
}

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

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

.page-gdpr__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #F2C14E;
    margin-bottom: 15px;
}

.page-gdpr__hero-description {
    font-size: 1.1em;
    line-height: 1.6;
    opacity: 0.9;
}

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

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

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

.page-gdpr__paragraph {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.85;
}

.page-gdpr__image-text-block {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
    margin-top: 40px;
}

.page-gdpr__image-text-block .page-gdpr__image {
    flex: 1 1 400px;
    max-width: 50%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Ensure image is not too small */
}

.page-gdpr__image-text-block .page-gdpr__text-content {
    flex: 1 1 400px;
    max-width: 50%;
}

.page-gdpr__list {
    list-style: disc;
    padding-left: 25px;
    margin-top: 20px;
}

.page-gdpr__list-item {
    margin-bottom: 10px;
    line-height: 1.6;
    opacity: 0.9;
}

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

.page-gdpr__right-card {
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #3A2A12;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__card-bg {
    background-color: #111111;
}

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

.page-gdpr__card-text {
    font-size: 0.95em;
    line-height: 1.6;
    opacity: 0.8;
}

.page-gdpr__button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.page-gdpr__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    color: #FFF6D6;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-gdpr__button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.page-gdpr__policy-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: center;
}

.page-gdpr__policy-list-item {
    margin-bottom: 15px;
}

.page-gdpr__policy-list-item a {
    color: #F2C14E;
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease;
}

.page-gdpr__policy-list-item a:hover {
    color: #FFD36B;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-gdpr__image-text-block {
        flex-direction: column;
        align-items: center;
    }
    .page-gdpr__image-text-block .page-gdpr__image,
    .page-gdpr__image-text-block .page-gdpr__text-content {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-gdpr__main-title {
        font-size: 2em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__section {
        padding: 40px 15px;
    }
    .page-gdpr__hero-description,
    .page-gdpr__paragraph,
    .page-gdpr__list-item,
    .page-gdpr__card-text,
    .page-gdpr__policy-list-item a {
        font-size: 0.95em;
    }
    .page-gdpr__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gdpr__hero-image,
    .page-gdpr__image-text-block .page-gdpr__image {
        max-width: 100%;
        height: auto; /* Ensure images are responsive */
    }
    /* Mobile overflow prevention */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-gdpr__main-title {
        font-size: 1.6em;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__rights-grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__button-group {
        flex-direction: column;
        align-items: center;
    }
}