.page-gdpr {
    color: #1A2B3C; /* 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__hero-section {
    position: relative;
    padding: 80px 20px;
    text-align: center;
    background-color: #f9f9f9; /* Light background for contrast */
    overflow: hidden;
}

.page-gdpr__hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-gdpr__hero-title {
    font-size: 3.2em;
    color: #1A2B3C;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    color: #333333;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__hero-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A2B3C;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1em;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__hero-button:hover {
    background-color: #e6c200;
    color: #0d1a26;
}

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

.page-gdpr__section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 40px 20px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #1A2B3C;
    margin-bottom: 25px;
    text-align: center;
    font-weight: 600;
}

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

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

.page-gdpr__card {
    background-color: #fcfcfc;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-gdpr__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-gdpr__card-image {
    width: 100%;
    height: 250px; /* Ensures a consistent height for card images */
    object-fit: cover;
    display: block;
}

.page-gdpr__card-title {
    font-size: 1.6em;
    color: #FFD700;
    padding: 20px 20px 10px;
    font-weight: 600;
}

.page-gdpr__card-text {
    font-size: 1em;
    color: #333333;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-gdpr__list {
    list-style-type: disc;
    margin-left: 25px;
    padding: 0;
    font-size: 1.1em;
    color: #333333;
}

.page-gdpr__list-item {
    margin-bottom: 10px;
}

.page-gdpr__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    margin-top: 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-gdpr__button--primary {
    background-color: #FFD700;
    color: #1A2B3C;
    border: 2px solid #FFD700;
}

.page-gdpr__button--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
}

.page-gdpr__button--secondary {
    background-color: #1A2B3C;
    color: #FFD700;
    border: 2px solid #1A2B3C;
    margin-left: 15px;
}

.page-gdpr__button--secondary:hover {
    background-color: #2b3e50;
    border-color: #2b3e50;
}

.page-gdpr__data-rights, .page-gdpr__contact-dpo {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-gdpr__hero-title {
        font-size: 2.8em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-gdpr {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
    }
    .page-gdpr__hero-section {
        padding: 60px 15px;
    }
    .page-gdpr__hero-title {
        font-size: 2.2em;
    }
    .page-gdpr__hero-description {
        font-size: 1em;
    }
    .page-gdpr__section {
        margin: 30px auto;
        padding: 30px 15px;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__section-text, .page-gdpr__list-item {
        font-size: 0.95em;
    }
    .page-gdpr__grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__card-image {
        height: 200px;
    }
    .page-gdpr__card-title {
        font-size: 1.4em;
    }
    .page-gdpr__button {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .page-gdpr__hero-image, .page-gdpr__card-image {
        max-width: 100%;
        height: auto; /* Ensure images are responsive and don't overflow */
    }
    .page-gdpr__section img, .page-gdpr__card img {
        max-width: 100%;
        height: auto; /* All images within content area must be responsive */
        min-width: 200px; /* Enforce minimum size for content images */
        min-height: 200px; /* Enforce minimum size for content images */
    }
}