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

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

.page-gdpr__hero-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-gdpr__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); /* Semi-transparent black overlay */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    color: #FFFFFF;
}

.page-gdpr__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFFFFF;
    line-height: 1.2;
    max-width: 900px;
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    line-height: 1.5;
}

.page-gdpr__hero-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin: 10px;
}

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

.page-gdpr__hero-button--register:hover {
    background-color: transparent;
    color: #FFFFFF;
}

.page-gdpr__hero-button--download {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-gdpr__hero-button--download:hover {
    background-color: transparent;
    color: #FCBC45;
}

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

.page-gdpr__intro-section, .page-gdpr__principles-section, .page-gdpr__rights-section, .page-gdpr__contact-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-gdpr__intro-heading, .page-gdpr__principles-heading, .page-gdpr__rights-heading, .page-gdpr__contact-heading {
    font-size: 2.2em;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
}

.page-gdpr__intro-text, .page-gdpr__rights-intro, .page-gdpr__contact-text {
    font-size: 1.1em;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #333333;
}

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

.page-gdpr__principle-card {
    background-color: #f8f8f8;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-gdpr__principle-image {
    width: 100%; /* Ensure images are not smaller than 200px display */
    height: auto;
    max-width: 400px; /* Example max-width, adjust as needed */
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

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

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

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

.page-gdpr__rights-item {
    background-color: #f8f8f8;
    border-left: 5px solid #FCBC45;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-gdpr__rights-item-title {
    font-size: 1.3em;
    color: #000000;
    margin-bottom: 10px;
}

.page-gdpr__rights-item-description {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
}

.page-gdpr__contact-section {
    background-color: #FCBC45;
    color: #000000;
    text-align: center;
}

.page-gdpr__contact-heading {
    color: #000000;
}

.page-gdpr__contact-text {
    color: #000000;
}

.page-gdpr__contact-button {
    display: inline-block;
    background-color: #000000;
    color: #FFFFFF;
    padding: 12px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #000000;
}

.page-gdpr__contact-button:hover {
    background-color: transparent;
    color: #000000;
    border-color: #000000;
}

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

    .page-gdpr__hero-description {
        font-size: 1.1em;
    }

    .page-gdpr__intro-heading, .page-gdpr__principles-heading, .page-gdpr__rights-heading, .page-gdpr__contact-heading {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding-top: var(--header-offset, 80px);
    }

    .page-gdpr__hero-title {
        font-size: 2em;
    }

    .page-gdpr__hero-description {
        font-size: 1em;
    }

    .page-gdpr__hero-button {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-gdpr__container {
        padding: 30px 15px;
    }

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

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

    .page-gdpr__principle-image {
        max-width: 100%; /* Ensure images are not smaller than 200px display */
        width: 100%;
        height: auto;
    }

    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-title {
        font-size: 1.6em;
    }

    .page-gdpr__hero-description {
        font-size: 0.9em;
    }

    .page-gdpr__hero-button {
        display: block;
        width: fit-content;
        margin: 10px auto;
    }

    .page-gdpr__intro-heading, .page-gdpr__principles-heading, .page-gdpr__rights-heading, .page-gdpr__contact-heading {
        font-size: 1.8em;
    }
}