.page-gdpr {
    padding-top: var(--header-offset, 120px); /* Ensures content starts below fixed header */
    background-color: #FFFFFF; /* Light background as per shared.css body */
    color: #000000; /* Dark text for contrast */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-gdpr__hero-section {
    position: relative;
    padding: 60px 20px;
    text-align: center;
    overflow: hidden; /* Prevent image overflow */
}

.page-gdpr__hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin-bottom: 30px;
    object-fit: cover;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

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

.page-gdpr__hero-description {
    font-size: 1.1em;
    color: #333333;
    max-width: 800px;
    margin: 0 auto 30px;
}

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

.page-gdpr__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 150px; /* Ensure buttons are not too small */
    text-align: center;
}

.page-gdpr__button--primary {
    background-color: #FCBC45; /* Login color for primary action */
    color: #000000;
    border: 2px solid #FCBC45;
}

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

.page-gdpr__button--secondary {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
}

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

.page-gdpr__content-area {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.page-gdpr__section-title {
    font-size: 2.2em;
    color: #000000;
    margin-top: 40px;
    margin-bottom: 25px;
    text-align: center;
}

.page-gdpr__paragraph {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: #333333;
}

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

.page-gdpr__principle-card {
    background-color: #f5f5f5; /* Slightly off-white for card background */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-gdpr__card-image {
    width: 100%;
    max-width: 400px; /* Constrain image width within card */
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

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

.page-gdpr__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
    max-width: 400px;
    color: #333333;
}

.page-gdpr__list li::before {
    content: "✅"; /* Using an emoji as a temporary visual cue */
    margin-right: 10px;
    color: #FCBC45;
}
.page-gdpr__list li {
    padding-left: 0; /* Remove previous padding for background-image */
    margin-bottom: 10px;
    font-size: 1em;
    display: flex;
    align-items: flex-start;
}

.page-gdpr__contact-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: #000000; /* Dark background for contact section */
    color: #FFFFFF; /* Light text for contrast */
    border-radius: 10px;
}

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

.page-gdpr__button--contact {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
    margin-right: 15px;
}

.page-gdpr__button--contact:hover {
    background-color: #e0a33c;
    border-color: #e0a33c;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr {
        padding-top: var(--header-offset, 80px); /* Adjust for smaller mobile header */
    }

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

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

    .page-gdpr__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-gdpr__button {
        width: 100%;
        max-width: 300px; /* Constrain button width on mobile */
    }

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

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

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

    .page-gdpr__contact-title {
        font-size: 1.6em;
    }

    /* Ensure images are responsive and don't overflow */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Maintain minimum size even on mobile */
        min-height: 200px; /* Maintain minimum size even on mobile */
    }
    .page-gdpr__button--contact {
        margin-right: 0; /* Remove margin for stacked buttons */
        margin-bottom: 15px; /* Add space between stacked buttons */
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-section,
    .page-gdpr__content-area {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-gdpr__list li::before {
        margin-right: 5px; /* Adjust emoji margin */
    }
}