/* style/gdpr.css */

/* Custom Colors */
:root {
    --page-gdpr-primary-color: #11A84E;
    --page-gdpr-secondary-color: #22C768;
    --page-gdpr-bg-dark: #08160F;
    --page-gdpr-card-bg: #11271B;
    --page-gdpr-text-main: #F2FFF6;
    --page-gdpr-text-secondary: #A7D9B8;
    --page-gdpr-border-color: #2E7A4E;
    --page-gdpr-glow-color: #57E38D;
    --page-gdpr-gold-color: #F2C14E;
    --page-gdpr-divider-color: #1E3A2A;
    --page-gdpr-deep-green: #0A4B2C;
    --page-gdpr-btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-gdpr {
    background-color: var(--page-gdpr-bg-dark); /* Apply custom background */
    color: var(--page-gdpr-text-main); /* Default text color for the page */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Ensure all images are responsive and don't change color */
.page-gdpr img {
    max-width: 100%;
    height: auto;
    display: block;
    filter: none; /* Prohibit filter to change image color */
}

/* Hero Section */
.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Ensure image then text */
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Specific small top padding for first screen */
    background-color: var(--page-gdpr-card-bg); /* Use card background for hero section */
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-gdpr__hero-image {
    width: 100%;
    max-width: 1200px; /* Example max-width for image */
    height: auto;
    object-fit: cover;
    margin-bottom: 30px; /* Space between image and content */
    border-radius: 8px;
}

.page-gdpr__hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-gdpr__main-title {
    font-size: clamp(2.2rem, 4vw, 3rem); /* H1 font size with clamp */
    color: var(--page-gdpr-text-main);
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.page-gdpr__intro-text {
    font-size: 1.1rem;
    color: var(--page-gdpr-text-secondary);
    margin-bottom: 30px;
}

/* General Section Styling */
.page-gdpr__section {
    padding: 60px 20px;
    border-bottom: 1px solid var(--page-gdpr-divider-color);
}

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

.page-gdpr__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

.page-gdpr__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: var(--page-gdpr-gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 600;
}

.page-gdpr__sub-title {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: var(--page-gdpr-primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-gdpr__content-block {
    margin-bottom: 30px;
    color: var(--page-gdpr-text-main);
}

.page-gdpr__content-block p {
    margin-bottom: 15px;
    color: var(--page-gdpr-text-secondary);
}

.page-gdpr__content-block strong {
    color: var(--page-gdpr-text-main);
}

.page-gdpr__image {
    width: 100%;
    max-width: 800px;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Grid for Principles Section */
.page-gdpr__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-gdpr__grid-item {
    background-color: var(--page-gdpr-card-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--page-gdpr-border-color);
}

.page-gdpr__grid-title {
    font-size: 1.3rem;
    color: var(--page-gdpr-primary-color);
    margin-bottom: 10px;
    font-weight: 600;
}

.page-gdpr__grid-item p {
    color: var(--page-gdpr-text-secondary);
    font-size: 0.95rem;
}

/* Rights List */
.page-gdpr__rights-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-gdpr__list-item {
    background-color: var(--page-gdpr-card-bg);
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 5px solid var(--page-gdpr-primary-color);
    color: var(--page-gdpr-text-main);
}

.page-gdpr__list-item strong {
    color: var(--page-gdpr-gold-color);
}

/* Contact List */
.page-gdpr__contact-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-gdpr__contact-list .page-gdpr__list-item {
    border-left: 5px solid var(--page-gdpr-secondary-color);
}

.page-gdpr__contact-link {
    color: var(--page-gdpr-gold-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
    color: var(--page-gdpr-glow-color);
    text-decoration: underline;
}


/* Buttons */
.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box; /* Ensure padding is included in width */
}

.page-gdpr__btn-primary {
    background: var(--page-gdpr-btn-gradient);
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__btn-secondary {
    background-color: transparent;
    color: var(--page-gdpr-primary-color);
    border: 2px solid var(--page-gdpr-primary-color);
    margin-left: 15px;
}

.page-gdpr__btn-secondary:hover {
    background-color: var(--page-gdpr-primary-color);
    color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-gdpr__hero-image {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* Ensure small top padding on mobile */
    }

    .page-gdpr__main-title {
        font-size: 2rem;
    }

    .page-gdpr__intro-text {
        font-size: 1rem;
    }

    .page-gdpr__section {
        padding: 40px 15px;
    }

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

    .page-gdpr__sub-title {
        font-size: 1.3rem;
    }

    .page-gdpr__grid {
        grid-template-columns: 1fr;
    }

    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-left: 0;
        margin-bottom: 15px; /* Add spacing between stacked buttons */
    }

    /* Ensure all images are responsive on mobile */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Ensure all image/video/button containers are responsive on mobile */
    .page-gdpr__container,
    .page-gdpr__hero-section,
    .page-gdpr__section,
    .page-gdpr__content-block,
    .page-gdpr__grid-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    /* Specific adjustment for buttons in hero or other sections if they were side-by-side */
    .page-gdpr__hero-content .page-gdpr__btn-primary {
        margin-bottom: 0; /* No extra margin if only one button */
    }
    
    .page-gdpr__hero-content .page-gdpr__btn-secondary {
        margin-top: 15px; /* Space if secondary button is below primary */
    }
}

@media (max-width: 480px) {
    .page-gdpr__main-title {
        font-size: 1.7rem;
    }
    .page-gdpr__section-title {
        font-size: 1.5rem;
    }
}

/* Contrast Fixes - Apply as needed if detected */
.page-gdpr__contrast-fix {
  background: #ffffff !important;
  color: #333333 !important;
  border: 1px solid #e0e0e0 !important;
}

.page-gdpr__text-contrast-fix {
  color: #333333 !important;
  text-shadow: none !important;
}