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

@media (max-width: 768px) {
    .page-gdpr {
        padding-top: var(--header-offset-mobile, 80px); /* Adjust for mobile header height */
        overflow-x: hidden; /* Prevent horizontal scroll on mobile */
    }
}

.page-gdpr__hero-section {
    background-color: #f8f8f8; /* Light background for hero */
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden; /* For image positioning */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

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

.page-gdpr__hero-title {
    font-size: 3.2em;
    color: #8B0000; /* Deep red for prominent title */
    margin-bottom: 20px;
    font-weight: bold;
}

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

.page-gdpr__hero-cta {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #333333;
    padding: 15px 30px;
    border-radius: 8px;
    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__hero-cta:hover {
    background-color: #e6c200; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-gdpr__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.3; /* Subtly blend background image */
}

@media (max-width: 1024px) {
    .page-gdpr__hero-title {
        font-size: 2.5em;
    }
    .page-gdpr__hero-description {
        font-size: 1.1em;
    }
    .page-gdpr__hero-section {
        padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-title {
        font-size: 2em;
    }
    .page-gdpr__hero-description {
        font-size: 1em;
    }
    .page-gdpr__hero-section {
        padding: 40px 15px;
    }
    .page-gdpr__hero-image {
        max-width: 100%; /* Ensure image is responsive */
        height: auto;
    }
}


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

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #8B0000;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-gdpr__section-description {
    font-size: 1.1em;
    color: #666666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}

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

.page-gdpr__card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-gdpr__card:hover {
    transform: translateY(-5px);
}

.page-gdpr__card-image {
    width: 100%; /* Card images must be large */
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-gdpr__card-title {
    font-size: 1.5em;
    color: #FFD700; /* Gold for card titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gdpr__card-text {
    font-size: 1em;
    color: #444444;
}

.page-gdpr__your-rights-section .page-gdpr__grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.page-gdpr__right-card {
    background-color: #8B0000; /* Deep red background for rights cards */
    color: #ffffff; /* White text for contrast */
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease;
}

.page-gdpr__right-card:hover {
    background-color: #a00000; /* Slightly lighter red on hover */
}

.page-gdpr__right-title {
    font-size: 1.3em;
    color: #FFD700; /* Gold for right titles */
    margin-bottom: 10px;
    font-weight: bold;
}

.page-gdpr__right-text {
    font-size: 0.95em;
    color: #f0f0f0;
}

.page-gdpr__contact-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #fdf8e6; /* Light cream background */
    border-radius: 10px;
    border: 1px solid #FFD700;
}

.page-gdpr__contact-text {
    font-size: 1.2em;
    color: #333333;
    margin-bottom: 25px;
}

.page-gdpr__further-info {
    text-align: center;
}

.page-gdpr__links-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-gdpr__link-button {
    display: inline-block;
    background-color: #8B0000; /* Deep red for secondary buttons */
    color: #FFD700; /* Gold text */
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-gdpr__link-button:hover {
    background-color: #a00000; /* Lighter red on hover */
    transform: translateY(-2px);
}

/* Ensure all images within .page-gdpr are responsive and meet min size */
.page-gdpr img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Specific rule to prevent small images in content area */
.page-gdpr__card-image,
.page-gdpr__section img { /* Targeting all images directly in sections or cards */
    min-width: 200px;
    min-height: 200px;
}

@media (max-width: 768px) {
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__section-description {
        font-size: 1em;
    }
    .page-gdpr__grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__links-container {
        flex-direction: column;
        align-items: center;
    }
    .page-gdpr__card-image {
        height: 200px; /* Adjust height for mobile */
    }
    /* Mobile responsive for all images in content area */
    .page-gdpr img {
        max-width: 100% !important;
        height: auto !important;
    }
}