/* style/gdpr.css */
.page-gdpr {
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    color: #ffffff; /* Light text for dark body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #1a1a1a; /* Ensure consistency with body background */
}

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

/* Hero Section */
.page-gdpr__hero-section {
    position: relative;
    text-align: center;
    padding: 80px 20px;
    overflow: hidden;
    background-color: #0A2463; /* Primary color background for hero */
    color: #ffffff;
}

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

.page-gdpr__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E3B505; /* Secondary color for emphasis */
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

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

.page-gdpr__button {
    display: inline-block;
    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;
    cursor: pointer;
    border: none;
}

.page-gdpr__button--primary {
    background-color: #E3B505; /* Secondary color for primary action */
    color: #0A2463; /* Primary color for text */
}

.page-gdpr__button--primary:hover {
    background-color: #f0c520;
    transform: translateY(-3px);
}

.page-gdpr__button--secondary {
    background-color: transparent;
    color: #E3B505; /* Secondary color for text */
    border: 2px solid #E3B505;
}

.page-gdpr__button--secondary:hover {
    background-color: rgba(227, 181, 5, 0.1);
    transform: translateY(-3px);
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    object-fit: cover; /* Ensure image covers the area */
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px; /* Enforce minimum size for content images */
}

/* Content Sections */
.page-gdpr__content-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-gdpr__content-section:last-of-type {
    border-bottom: none;
}

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #E3B505; /* Secondary color for section titles */
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-gdpr__section-paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #f0f0f0;
}

/* Grid Layout */
.page-gdpr__grid {
    display: grid;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

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

.page-gdpr__grid--2-col {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

.page-gdpr__card,
.page-gdpr__feature-card {
    background-color: rgba(10, 36, 99, 0.7); /* Semi-transparent primary color */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, background-color 0.3s ease;
    min-height: 200px; /* Ensure cards are not too small visually */
}

.page-gdpr__card:hover,
.page-gdpr__feature-card:hover {
    transform: translateY(-5px);
    background-color: rgba(10, 36, 99, 0.9);
}

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

.page-gdpr__card-description,
.page-gdpr__feature-description {
    font-size: 1em;
    color: #ffffff;
}

/* List Styles */
.page-gdpr__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-gdpr__list-item {
    background-color: rgba(10, 36, 99, 0.5); /* Semi-transparent primary color */
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-gdpr__list-item:hover {
    background-color: rgba(10, 36, 99, 0.7);
}

.page-gdpr__list-title {
    font-size: 1.6em;
    color: #E3B505;
    margin-bottom: 10px;
    font-weight: bold;
}

.page-gdpr__list-description {
    font-size: 1.05em;
    color: #f0f0f0;
}

.page-gdpr__link {
    color: #E3B505; /* Secondary color for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-gdpr__link:hover {
    color: #f0c520;
    text-decoration: underline;
}

.page-gdpr__section-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    object-fit: cover;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px; /* Enforce minimum size for content images */
}

/* Contact Section */
.page-gdpr__contact-details {
    margin-top: 30px;
    text-align: center;
}

.page-gdpr__contact-info {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #f0f0f0;
}

.page-gdpr__call-to-action {
    background-color: rgba(227, 181, 5, 0.1); /* Light transparent secondary color */
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin-top: 60px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__call-to-action-title {
    font-size: 2em;
    color: #E3B505;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-gdpr__call-to-action-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

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

@media (max-width: 768px) {
    .page-gdpr {
        padding-top: var(--header-offset, 80px); /* Adjust for smaller header on mobile */
    }
    .page-gdpr__hero-section {
        padding: 60px 15px;
    }
    .page-gdpr__hero-title {
        font-size: 2.5em;
    }
    .page-gdpr__hero-description {
        font-size: 1em;
    }
    .page-gdpr__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-gdpr__button {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__section-paragraph {
        font-size: 1em;
    }
    .page-gdpr__grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__card,
    .page-gdpr__feature-card,
    .page-gdpr__list-item {
        padding: 20px;
    }
    .page-gdpr__card-title,
    .page-gdpr__feature-title {
        font-size: 1.3em;
    }
    .page-gdpr__list-title {
        font-size: 1.4em;
    }
    /* Mobile content images must not overflow */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-title {
        font-size: 2em;
    }
    .page-gdpr__section-title {
        font-size: 1.5em;
    }
    .page-gdpr__button {
        font-size: 1em;
        padding: 12px 25px;
    }
    .page-gdpr__call-to-action-title {
        font-size: 1.5em;
    }
}