.page-gdpr {
    color: #F2FFF6; /* Text Main */
    background-color: transparent; /* Rely on body's background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-gdpr__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image above content */
    align-items: center;
    justify-content: center;
    padding: 10px 20px 60px; /* Small top padding, more bottom */
    text-align: center;
    background-color: #0A4B2C; /* Deep Green, for a strong hero section */
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width */
    margin-bottom: 30px; /* Space between image and text */
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.page-gdpr__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-gdpr__main-title {
    font-size: clamp(2rem, 4vw + 1rem, 3.5rem); /* Responsive H1 */
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-gdpr__description {
    font-size: 1.15rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

.page-gdpr__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    gap: 20px;
    justify-content: center;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
    box-sizing: border-box; /* Crucial for max-width */
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text break */
}

.page-gdpr__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
    color: #F2FFF6; /* Text Main */
    border: 2px solid transparent;
}

.page-gdpr__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 0 15px rgba(87, 227, 141, 0.6); /* Glow */
}

.page-gdpr__btn-secondary {
    background: transparent;
    color: #2AD16F; /* A lighter green for links */
    border: 2px solid #2AD16F;
}

.page-gdpr__btn-secondary:hover {
    background-color: #2AD16F;
    color: #F2FFF6;
    box-shadow: 0 0 15px rgba(87, 227, 141, 0.6); /* Glow */
}

.page-gdpr__section {
    padding: 60px 20px;
    border-bottom: 1px solid #1E3A2A; /* Divider */
}

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

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

.page-gdpr__section-title {
    font-size: clamp(1.8rem, 3vw + 1rem, 2.5rem);
    color: #F2C14E; /* Gold */
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-gdpr__text-block {
    font-size: 1.05rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    text-align: justify;
}

.page-gdpr__text-block strong {
    color: #F2C14E; /* Gold */
}

.page-gdpr__list {
    list-style: disc;
    padding-left: 40px;
    margin-bottom: 20px;
    color: #F2FFF6; /* Text Main */
}

.page-gdpr__list li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.page-gdpr__list li strong {
    color: #F2C14E; /* Gold */
}

.page-gdpr__contact-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
    color: #F2FFF6; /* Text Main */
}

.page-gdpr__contact-list li {
    margin-bottom: 10px;
    font-size: 1.05rem;
}

.page-gdpr__contact-list a {
    color: #2AD16F; /* A lighter green for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-gdpr__contact-list a:hover {
    color: #57E38D; /* Glow */
    text-decoration: underline;
}

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

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

.page-gdpr__card {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    padding: 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px; /* Min size requirement */
    min-height: 200px;
}

.page-gdpr__card-title {
    font-size: 1.3rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gdpr__card-text {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    flex-grow: 1; /* Push content to bottom */
}

.page-gdpr__content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 30px auto;
    max-width: 800px;
    object-fit: cover;
    min-width: 200px; /* Min size requirement */
    min-height: 200px;
}

.page-gdpr__cta-final {
    text-align: center;
    background-color: #0A4B2C; /* Deep Green */
    padding: 80px 20px;
}

.page-gdpr__cta-container {
    max-width: 800px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-gdpr__hero-section {
        padding: 10px 15px 50px;
    }
    .page-gdpr__section {
        padding: 50px 15px;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.8rem, 5vw + 1rem, 3rem);
    }
    .page-gdpr__section-title {
        font-size: clamp(1.6rem, 4vw + 1rem, 2.2rem);
    }
    .page-gdpr__description,
    .page-gdpr__text-block,
    .page-gdpr__list li,
    .page-gdpr__contact-list li {
        font-size: 1rem;
    }
    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding: 10px 15px 40px;
    }
    .page-gdpr__section {
        padding: 40px 15px;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.6rem, 6vw + 1rem, 2.5rem);
    }
    .page-gdpr__section-title {
        font-size: clamp(1.4rem, 5vw + 1rem, 2rem);
    }
    .page-gdpr__cta-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 15px;
    }
    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-gdpr__card {
        padding: 25px;
    }
    .page-gdpr__grid {
        grid-template-columns: 1fr; /* Single column layout for cards */
    }

    /* Mobile image and container responsiveness */
    .page-gdpr img {
      max-width: 100% !important;
      width: 100% !important;
      height: auto !important;
      display: block !important;
    }
    
    .page-gdpr__hero-image-wrapper,
    .page-gdpr__container,
    .page-gdpr__card,
    .page-gdpr__grid,
    .page-gdpr__cta-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Prevent content overflow */
    }
    /* Ensure padding on content areas */
    .page-gdpr__intro .page-gdpr__container,
    .page-gdpr__data-collection .page-gdpr__container,
    .page-gdpr__data-usage .page-gdpr__container,
    .page-gdpr__data-sharing .page-gdpr__container,
    .page-gdpr__user-rights .page-gdpr__container,
    .page-gdpr__data-security .page-gdpr__container,
    .page-gdpr__data-retention .page-gdpr__container,
    .page-gdpr__contact-us .page-gdpr__container,
    .page-gdpr__policy-updates .page-gdpr__container {
        padding-left: 15px;
        padding-right: 15px;
    }
    /* Small top padding for hero section on mobile */
    .page-gdpr__hero-section {
        padding-top: 10px !important;
    }
}