.page-gdpr {
    color: #333333; /* Dark text for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

.page-gdpr__hero-section {
    background-color: #f8f8f8;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.page-gdpr__hero-content {
    max-width: 800px;
}

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

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

.page-gdpr__hero-button {
    display: inline-block;
    background-color: #000000;
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-gdpr__hero-button:hover {
    background-color: #333333;
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 1000px;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__principles-title {
    font-size: 2.2em;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
}

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

.page-gdpr__principle-card {
    background-color: #f0f0f0;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 8px 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 12px rgba(0, 0, 0, 0.1);
}

.page-gdpr__principle-image {
    width: 100%;
    max-width: 400px; /* Max width for images in cards */
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

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

.page-gdpr__card-description {
    color: #555555;
    font-size: 0.95em;
}

.page-gdpr__your-rights-section {
    background-color: #f8f8f8;
    padding: 60px 20px;
    text-align: center;
}

.page-gdpr__your-rights-title {
    font-size: 2.2em;
    color: #000000;
    margin-bottom: 20px;
}

.page-gdpr__your-rights-intro {
    font-size: 1.1em;
    color: #555555;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.page-gdpr__rights-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 0 auto 30px auto;
    text-align: left;
}

.page-gdpr__rights-item {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 1em;
    color: #333333;
    display: flex;
    align-items: center;
}

.page-gdpr__rights-item::before {
    content: '✔';
    color: #FCBC45;
    margin-right: 10px;
    font-weight: bold;
}

.page-gdpr__your-rights-outro {
    font-size: 1.1em;
    color: #555555;
    margin-bottom: 30px;
}

.page-gdpr__text-link {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr__text-link:hover {
    text-decoration: underline;
}

.page-gdpr__contact-button {
    display: inline-block;
    background-color: #FCBC45;
    color: #000000;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-gdpr__contact-button:hover {
    background-color: #e0a53b;
}

.page-gdpr__cta-section {
    background-color: #000000;
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
}

.page-gdpr__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-gdpr__cta-description {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

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

.page-gdpr__cta-register-button {
    display: inline-block;
    background-color: #FFFFFF;
    color: #000000;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

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

.page-gdpr__cta-login-button {
    display: inline-block;
    background-color: #FCBC45;
    color: #000000;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-gdpr__cta-login-button:hover {
    background-color: #e0a53b;
    color: #000000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding: 60px 15px;
    }

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

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

    .page-gdpr__principles-section {
        padding: 40px 0;
    }

    .page-gdpr__principles-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

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

    .page-gdpr__principle-card {
        padding: 20px;
    }

    .page-gdpr__principle-image {
        max-width: 100%; /* Ensure images don't overflow on mobile */
        height: auto;
    }

    .page-gdpr__card-title {
        font-size: 1.3em;
    }

    .page-gdpr__your-rights-section {
        padding: 40px 15px;
    }

    .page-gdpr__your-rights-title {
        font-size: 1.8em;
    }

    .page-gdpr__your-rights-intro {
        font-size: 1em;
    }

    .page-gdpr__rights-item {
        padding: 10px 15px;
        font-size: 0.9em;
    }

    .page-gdpr__cta-section {
        padding: 60px 15px;
    }

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

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

    .page-gdpr__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-gdpr__cta-register-button, .page-gdpr__cta-login-button {
        width: 100%;
        max-width: 300px;
    }
    
    /* Ensure all images within .page-gdpr are responsive and don't overflow */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
}