/* style/gdpr.css */

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

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

.page-gdpr__section-title {
    color: #0A2342; /* Main brand color */
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-gdpr__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Auxiliary brand color */
    border-radius: 2px;
}

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

/* Hero Section */
.page-gdpr__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    min-height: 600px;
    background-color: #0A2342; /* Dark blue background for hero */
    color: #ffffff; /* Light text on dark background */
    padding: 60px 20px;
}

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

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

.page-gdpr__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for title */
    line-height: 1.2;
}

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

.page-gdpr__hero-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0A2342; /* Dark blue text */\    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-gdpr__hero-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

/* Commitment Section */
.page-gdpr__commitment-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.page-gdpr__commitment-item {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-gdpr__commitment-item:hover {
    transform: translateY(-10px);
}

.page-gdpr__commitment-image {
    width: 400px; /* Base display width */
    height: 267px; /* Base display height (approx 3:2 ratio) */
    max-width: 100%; /* Ensure image is responsive */
    min-width: 200px;
    min-height: 133px;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
}

.page-gdpr__item-title {
    color: #0A2342;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-gdpr__item-description {
    color: #666666;
}

/* Rights Section */
.page-gdpr__rights-section {
    padding: 80px 0;
    background-color: #0A2342; /* Dark blue background */
    color: #ffffff; /* Light text */
}

.page-gdpr__rights-section .page-gdpr__section-title {
    color: #FFD700; /* Gold title on dark background */
}

.page-gdpr__rights-section .page-gdpr__section-intro {
    color: #f0f0f0;
}

.page-gdpr__rights-section .page-gdpr__section-title::after {
    background-color: #f0f0f0; /* Light line on dark background */
}

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

.page-gdpr__right-card {
    background-color: rgba(255, 255, 255, 0.1); /* Semi-transparent white card */
    padding: 30px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background-color 0.3s ease;
}

.page-gdpr__right-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.page-gdpr__card-title {
    color: #FFD700;
    font-size: 1.4em;
    margin-bottom: 10px;
}

.page-gdpr__card-description {
    color: #f0f0f0;
}

.page-gdpr__contact-cta {
    text-align: center;
    margin-top: 60px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
}

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

.page-gdpr__text-link {
    color: #FFD700;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-gdpr__text-link:hover {
    color: #e6c200;
}

.page-gdpr__contact-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A2342;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.page-gdpr__contact-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

/* FAQ Section */
.page-gdpr__faq-section {
    padding: 80px 0;
    background-color: #f0f0f0;
}

.page-gdpr__faq-list {
    margin-top: 40px;
}

.page-gdpr__faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 20px;
    padding: 25px 30px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-gdpr__faq-question {
    color: #0A2342;
    font-size: 1.3em;
    margin-bottom: 10px;
    cursor: pointer; /* Indicate it's clickable for JS toggle */
    position: relative;
    padding-right: 30px;
}

.page-gdpr__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-gdpr__faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-gdpr__faq-answer {
    color: #555555;
    margin-top: 15px;
    display: none; /* Hidden by default, toggled by JS */
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-gdpr__hero-title {
        font-size: 2.8em;
    }
    .page-gdpr__hero-description {
        font-size: 1.1em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        min-height: 450px;
        padding: 40px 15px;
    }
    .page-gdpr__hero-title {
        font-size: 2.2em;
    }
    .page-gdpr__hero-description {
        font-size: 1em;
    }
    .page-gdpr__hero-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__section-intro {
        font-size: 1em;
        margin-bottom: 30px;
    }
    .page-gdpr__commitment-grid,
    .page-gdpr__rights-grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__commitment-item,
    .page-gdpr__right-card,
    .page-gdpr__faq-item {
        padding: 20px;
    }
    .page-gdpr__item-title,
    .page-gdpr__card-title,
    .page-gdpr__faq-question {
        font-size: 1.2em;
    }
    .page-gdpr__contact-cta {
        padding: 20px;
    }
    .page-gdpr__contact-text {
        font-size: 1em;
    }
    .page-gdpr__contact-button {
        padding: 12px 25px;
        font-size: 1.1em;
    }

    /* Mobile image overflow prevention */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum size even on mobile */
        min- /* Proportionate min-height for 3:2 ratio if needed for content images */
    }
    .page-gdpr__hero-image {
        min-height: 250px; /* Ensure hero image is not too small on mobile */
    }
    .page-gdpr {
        overflow-x: hidden; /* Prevent horizontal scroll */
    }
}

/* Ensure all content images are not smaller than 200px */
.page-gdpr img {
    min-width: 200px;
    min-height: 200px;
}

/* Override for specific images that might be smaller by design, if any, but ensure they meet the minimum */
.page-gdpr__hero-image {
    min-width: 100%; /* Hero image should always fill width */
    min-height: 300px; /* Minimum height for hero */
}

/* Ensure no CSS filter changes image colors */
.page-gdpr img {
    filter: none; /* Explicitly ensure no filters are applied */
}