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

.page-gdpr__hero-section {
    background-color: #000000; /* Main color for hero background */
    padding: 80px 20px;
    text-align: center;
    color: #FFFFFF;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
}

.page-gdpr__hero-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-gdpr__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FCBC45; /* Login button color for emphasis */
}

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

.page-gdpr__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin: 10px;
}

.page-gdpr__button--register {
    background-color: #FCBC45; /* Login button color */
    color: #000000; /* Dark text for contrast */
}

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

.page-gdpr__button--login {
    background-color: #FCBC45;
    color: #000000;
}

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

.page-gdpr__button--download {
    background-color: #FFFFFF;
    color: #000000;
    border: 1px solid #FCBC45;
}

.page-gdpr__button--download:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

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

.page-gdpr__section-intro {
    margin-bottom: 40px;
}

.page-gdpr__section-title,
.page-gdpr__principles-title,
.page-gdpr__user-rights-title,
.page-gdpr__data-security-title,
.page-gdpr__cookie-policy-title,
.page-gdpr__contact-us-title,
.page-gdpr__related-resources-title {
    font-size: 2.2em;
    color: #000000;
    margin-bottom: 25px;
    text-align: center;
}

.page-gdpr__section-text {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

.page-gdpr__principles {
    margin-top: 60px;
}

.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: #f9f9f9;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.page-gdpr__principle-card:hover {
    transform: translateY(-8px);
}

.page-gdpr__principle-icon {
    width: 250px; /* Example: 250px width for a 400x300 image, maintaining aspect ratio */
    height: 187px;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

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

.page-gdpr__principle-text {
    font-size: 1em;
    color: #555555;
    text-align: justify;
}

.page-gdpr__user-rights {
    margin-top: 60px;
}

.page-gdpr__user-rights-intro {
    font-size: 1.1em;
    margin-bottom: 30px;
    text-align: justify;
}

.page-gdpr__rights-list {
    list-style: none;
    padding: 0;
}

.page-gdpr__rights-item {
    background-color: #f0f0f0;
    border-left: 5px solid #FCBC45;
    margin-bottom: 20px;
    padding: 25px;
    border-radius: 8px;
}

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

.page-gdpr__rights-text {
    font-size: 1em;
    color: #555555;
    text-align: justify;
}

.page-gdpr__data-security {
    margin-top: 60px;
    text-align: center;
}

.page-gdpr__security-image {
    width: 800px; /* Example: 800px width for an 800x600 image */
    height: 600px;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__data-security-text {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 30px auto;
    text-align: justify;
}

.page-gdpr__cookie-policy,
.page-gdpr__contact-us {
    margin-top: 60px;
    text-align: center;
}

.page-gdpr__cookie-policy-text,
.page-gdpr__contact-us-text {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 30px auto;
    text-align: justify;
}

.page-gdpr__related-resources {
    background-color: #000000;
    padding: 80px 20px;
    margin-top: 60px;
    color: #FFFFFF;
}

.page-gdpr__related-resources-title {
    color: #FCBC45;
    margin-bottom: 40px;
}

.page-gdpr__resource-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-gdpr__resource-card {
    background-color: #1a1a1a;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    text-decoration: none;
    color: #f0f0f0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-gdpr__resource-card:hover {
    transform: translateY(-8px);
    background-color: #333333;
}

.page-gdpr__resource-icon {
    width: 300px; /* Example: 300px width for a 600x400 image */
    height: 200px;
    margin-bottom: 20px;
    border-radius: 8px;
    object-fit: cover;
}

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

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

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .page-gdpr__hero-title {
        font-size: 2.4em;
    }
    .page-gdpr__section-title,
    .page-gdpr__principles-title,
    .page-gdpr__user-rights-title,
    .page-gdpr__data-security-title,
    .page-gdpr__cookie-policy-title,
    .page-gdpr__contact-us-title,
    .page-gdpr__related-resources-title {
        font-size: 2em;
    }
}

@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__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gdpr__content-area {
        padding: 40px 15px;
    }
    .page-gdpr__section-title,
    .page-gdpr__principles-title,
    .page-gdpr__user-rights-title,
    .page-gdpr__data-security-title,
    .page-gdpr__cookie-policy-title,
    .page-gdpr__contact-us-title,
    .page-gdpr__related-resources-title {
        font-size: 1.8em;
    }
    .page-gdpr__principles-grid {
        grid-template-columns: 1fr;
    }
    /* Ensure content area images are responsive */
    .page-gdpr__principle-icon,
    .page-gdpr__resource-icon,
    .page-gdpr__security-image {
        max-width: 100%;
        height: auto;
    }
    /* Mobile anti-overflow for all images within .page-gdpr */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-title {
        font-size: 1.8em;
    }
    .page-gdpr__section-title,
    .page-gdpr__principles-title,
    .page-gdpr__user-rights-title,
    .page-gdpr__data-security-title,
    .page-gdpr__cookie-policy-title,
    .page-gdpr__contact-us-title,
    .page-gdpr__related-resources-title {
        font-size: 1.6em;
    }
    .page-gdpr__button {
        display: block;
        width: calc(100% - 20px);
        margin: 10px auto;
    }
    .page-gdpr__principle-card, .page-gdpr__rights-item, .page-gdpr__resource-card {
        padding: 20px;
    }
}