.page-gdpr {
    color: #ffffff; /* Light text for dark body background */
    background-color: #000000; /* Ensure content area matches body background */
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

.page-gdpr__hero-section {
    position: relative;
    text-align: center;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-gdpr__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3;
}

.page-gdpr__hero-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 40px;
    border-radius: 10px;
}

.page-gdpr__hero-title {
    font-size: 3.5em;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-gdpr__hero-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-gdpr__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.page-gdpr__btn--register {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #FFFFFF;
}

.page-gdpr__btn--register:hover {
    background-color: #f0f0f0;
    color: #000000;
}

.page-gdpr__btn--learn-more,
.page-gdpr__btn--cookies,
.page-gdpr__btn--manage-privacy {
    background-color: transparent;
    color: #FCBC45;
    border: 2px solid #FCBC45;
}

.page-gdpr__btn--learn-more:hover,
.page-gdpr__btn--cookies:hover,
.page-gdpr__btn--manage-privacy:hover {
    background-color: #FCBC45;
    color: #000000;
}

.page-gdpr__btn--join,
.page-gdpr__btn--primary {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-gdpr__btn--join:hover,
.page-gdpr__btn--primary:hover {
    background-color: #e0a53b;
    color: #000000;
}

.page-gdpr__introduction-section,
.page-gdpr__principles-section,
.page-gdpr__user-rights-section,
.page-gdpr__security-section,
.page-gdpr__cookie-section,
.page-gdpr__contact-section,
.page-gdpr__cta-section {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-gdpr__text-block {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-gdpr__card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.page-gdpr__link {
    color: #FCBC45;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.page-gdpr__rights-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
}

.page-gdpr__list-item {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 25px;
    margin-bottom: 15px;
    border-radius: 8px;
    border-left: 5px solid #FCBC45;
}

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

.page-gdpr__list-text {
    color: #e0e0e0;
    font-size: 1em;
}

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

.page-gdpr__feature-item {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gdpr__feature-icon {
    width: 200px; /* Minimum 200px */
    height: auto;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    object-fit: cover;
}

.page-gdpr__feature-title {
    font-size: 1.3em;
    color: #FCBC45;
    margin-bottom: 10px;
}

.page-gdpr__feature-description {
    color: #cccccc;
    font-size: 0.95em;
}

.page-gdpr__cookie-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.page-gdpr__contact-info {
    font-size: 1.1em;
    color: #e0e0e0;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-gdpr__cta-section {
    text-align: center;
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(252, 188, 69, 0.1), rgba(0, 0, 0, 0.5));
    border-top: 1px solid rgba(252, 188, 69, 0.2);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-gdpr__hero-title {
        font-size: 3em;
    }
    .page-gdpr__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-title {
        font-size: 2.5em;
    }
    .page-gdpr__hero-description {
        font-size: 1em;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-gdpr__btn {
        width: 100%;
        max-width: 300px;
    }
    .page-gdpr__grid,
    .page-gdpr__security-features {
        grid-template-columns: 1fr;
    }
    .page-gdpr__introduction-section,
    .page-gdpr__principles-section,
    .page-gdpr__user-rights-section,
    .page-gdpr__security-section,
    .page-gdpr__cookie-section,
    .page-gdpr__contact-section,
    .page-gdpr__cta-section {
        padding: 40px 0;
    }
    .page-gdpr__content-container {
        padding: 0 15px;
    }
    /* Ensure all images within .page-gdpr are responsive and not too small */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
    .page-gdpr__feature-icon {
        width: 250px;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-title {
        font-size: 2em;
    }
    .page-gdpr__hero-container {
        padding: 30px 20px;
    }
    .page-gdpr__section-title {
        font-size: 1.5em;
    }
    .page-gdpr__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}