.page-gdpr {
    color: #333333; /* Dark text for light background */
}

.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

.page-gdpr__hero-container {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.6); /* Slightly dim the background image for text readability */
}

.page-gdpr__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #FFFFFF;
    max-width: 800px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent dark overlay for text contrast */
    border-radius: 10px;
}

.page-gdpr__main-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.page-gdpr__intro-text {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-gdpr__cta-button {
    display: inline-block;
    background-color: #FCBC45; /* Login button color */
    color: #000000; /* Dark text for bright button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

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

.page-gdpr__cta-button--secondary {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #FCBC45;
    margin-top: 20px;
}

.page-gdpr__cta-button--secondary:hover {
    background-color: #1a1a1a;
    border-color: #e0a53a;
}

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

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

.page-gdpr__section-description {
    font-size: 1.1em;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-gdpr__principle-card {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__principle-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

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

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

.page-gdpr__right-item {
    background-color: #f9f9f9;
    border-left: 5px solid #FCBC45;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

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

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

.page-gdpr__contact-section {
    text-align: center;
    background-color: #f0f0f0;
    border-radius: 10px;
    padding: 50px 30px;
    margin-bottom: 60px;
}

.page-gdpr__contact-info {
    margin-top: 30px;
    margin-bottom: 30px;
}

.page-gdpr__contact-detail {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #333333;
}

.page-gdpr__contact-link {
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
    color: #FCBC45;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-gdpr__main-title {
        font-size: 2.5em;
    }
    .page-gdpr__intro-text {
        font-size: 1.1em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-content {
        max-width: 90%;
        padding: 15px;
    }
    .page-gdpr__main-title {
        font-size: 2em;
        margin-bottom: 15px;
    }
    .page-gdpr__intro-text {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-gdpr__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gdpr__content-area {
        padding: 40px 15px;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__principles-grid, .page-gdpr__rights-list {
        grid-template-columns: 1fr;
    }
    /* Ensure content images are responsive and not too small */
    .page-gdpr__principle-image {
        max-width: 100%;
        height: auto;
        min-height: 200px;
        object-fit: cover;
    }
    .page-gdpr__hero-image {
        max-width: 100%;
        height: auto;
        min-height: 200px;
    }
    /* Mobile overflow prevention */
    .page-gdpr {
        max-width: 100%;
        overflow-x: hidden;
    }
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-gdpr__main-title {
        font-size: 1.6em;
    }
    .page-gdpr__intro-text {
        font-size: 0.9em;
    }
    .page-gdpr__section-title {
        font-size: 1.5em;
    }
    .page-gdpr__card-title {
        font-size: 1.3em;
    }
    .page-gdpr__right-title {
        font-size: 1.2em;
    }
    .page-gdpr__contact-section {
        padding: 30px 15px;
    }
}