/* style/gdpr.css */

/* --- General Page Styling --- */
.page-gdpr {
    background-color: #0A0A0A; /* Page background as specified */
    color: #FFF6D6; /* Main text color for dark background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    font-size: 1rem;
}

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

.page-gdpr__section {
    padding: 60px 0;
}

.page-gdpr__section--dark {
    background-color: #0A0A0A;
    color: #FFF6D6;
}

.page-gdpr__section--light {
    background-color: #111111; /* Card BG color used for light section to maintain dark theme */
    color: #FFF6D6;
}

.page-gdpr__section-title {
    font-size: 2.5rem;
    color: #F2C14E; /* Main color for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.2;
}

.page-gdpr__sub-title {
    font-size: 1.8rem;
    color: #FFD36B; /* Accent color for sub-titles */
    margin-top: 30px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-gdpr__paragraph {
    margin-bottom: 15px;
    color: #FFF6D6; /* Ensure text is light on dark background */
}

.page-gdpr a {
    color: #FFD36B; /* Links in content */
    text-decoration: underline;
}

.page-gdpr a:hover {
    color: #F2C14E;
}

/* --- Hero Section --- */
.page-gdpr__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Desktop fixed header spacing */
    background: linear-gradient(135deg, #F2C14E, #FFD36B); /* Placeholder gradient for hero background */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

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

.page-gdpr__hero-content {
    position: relative;
    padding: 40px 20px 60px;
    max-width: 900px;
    background-color: rgba(10, 10, 10, 0.8);
    margin-top: -100px;
    border-radius: 10px;
    z-index: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.page-gdpr__hero-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: #FFF6D6;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__hero-description {
    font-size: 1.2rem;
    color: #FFF6D6;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__hero-cta-button {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
    color: #111111; /* Dark text for bright button */
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-gdpr__hero-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(242, 193, 78, 0.4);
}

/* --- Image and Text Blocks --- */
.page-gdpr__image-text-block {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
    margin-bottom: 50px;
}

.page-gdpr__image-text-block--reverse {
    flex-direction: row-reverse;
}

.page-gdpr__text-content {
    flex: 1;
}

.page-gdpr__image-wrapper {
    flex: 1;
    min-width: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
}

.page-gdpr__image-wrapper--full-width {
    flex: none;
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
}

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

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

.page-gdpr__feature-card,
.page-gdpr__rights-card,
.page-gdpr__contact-card,
.page-gdpr__card {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: #FFF6D6; /* Text Main color */
}

.page-gdpr__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(242, 193, 78, 0.4);
}

.page-gdpr__card-title {
    font-size: 1.5rem;
    color: #FFD36B; /* Accent color for card titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gdpr__card-description {
    font-size: 0.95rem;
    color: #FFF6D6;
}

/* --- Buttons --- */
.page-gdpr__button-primary,
.page-gdpr__btn-primary {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #111111;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-gdpr__button-primary:hover,
.page-gdpr__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(242, 193, 78, 0.4);
}

.page-gdpr__button-secondary,
.page-gdpr__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    background-color: transparent;
    color: #F2C14E; /* Main brand color for text */
    text-decoration: none;
    border: 2px solid #F2C14E; /* Border with main brand color */
    border-radius: 8px;
    font-weight: bold;
    font-size: 1rem;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    margin-left: 15px;
}

.page-gdpr__button-secondary:hover,
.page-gdpr__btn-secondary:hover {
    background-color: #F2C14E;
    color: #111111; /* Dark text on hover */
}

.page-gdpr__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* --- CTA Section --- */
.page-gdpr__section--cta {
    background-color: #111111; /* Card BG for CTA section */
    text-align: center;
    padding: 80px 0;
}

.page-gdpr__cta-title {
    font-size: 2.8rem;
    color: #F2C14E;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-gdpr__cta-description {
    font-size: 1.2rem;
    color: #FFF6D6;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* --- FAQ Section --- */
.page-gdpr__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__faq-item {
    background-color: #111111; /* Card BG */
    border: 1px solid #3A2A12; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background-color: #1a1a1a; /* Slightly lighter dark for question header */
    transition: background-color 0.3s ease;
}

.page-gdpr__faq-question:hover {
    background-color: #222222;
}

.page-gdpr__faq-title {
    font-size: 1.15rem;
    color: #FFD36B; /* Accent color for FAQ questions */
    margin: 0;
    font-weight: bold;
}

.page-gdpr__faq-toggle {
    font-size: 1.5rem;
    color: #F2C14E;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.page-gdpr__faq-item.active .page-gdpr__faq-toggle {
    transform: rotate(45deg);
}

.page-gdpr__faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #FFF6D6;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
    max-height: 1000px !important;
    padding: 15px 25px 25px;
}

.page-gdpr__faq-answer .page-gdpr__paragraph {
    margin-bottom: 0;
}


/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .page-gdpr__hero-content {
        margin-top: -80px;
    }
    .page-gdpr__section-title {
        font-size: 2rem;
    }
    .page-gdpr__sub-title {
        font-size: 1.6rem;
    }
    .page-gdpr__hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-gdpr__hero-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .page-gdpr {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-gdpr__hero-section {
        padding-top: var(--header-offset, 120px) !important;
    }

    .page-gdpr__hero-image-wrapper {
        max-height: 400px;
    }

    .page-gdpr__hero-content {
        margin-top: -60px;
        padding: 30px 15px 40px;
    }
    
    .page-gdpr__hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-gdpr__hero-description {
        font-size: 1rem;
        margin-bottom: 20px;
    }

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

    .page-gdpr__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .page-gdpr__sub-title {
        font-size: 1.4rem;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .page-gdpr__image-text-block {
        flex-direction: column;
        gap: 30px;
        margin-top: 30px;
        margin-bottom: 30px;
    }

    .page-gdpr__image-text-block--reverse {
        flex-direction: column;
    }

    .page-gdpr__image-wrapper {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .page-gdpr__image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-gdpr__feature-grid,
    .page-gdpr__rights-grid,
    .page-gdpr__contact-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-gdpr__card {
        padding: 25px;
    }

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

    .page-gdpr__cta-title {
        font-size: 2rem;
    }
    .page-gdpr__cta-description {
        font-size: 1rem;
    }

    .page-gdpr__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }

    .page-gdpr__hero-cta-button,
    .page-gdpr__button-primary,
    .page-gdpr__btn-primary,
    .page-gdpr__button-secondary,
    .page-gdpr__btn-secondary,
    .page-gdpr a[class*="button"],
    .page-gdpr a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

    .page-gdpr__faq-question {
        padding: 15px 20px;
    }

    .page-gdpr__faq-title {
        font-size: 1rem;
    }

    .page-gdpr__faq-answer {
        padding: 0 20px;
    }
    .page-gdpr__faq-item.active .page-gdpr__faq-answer {
        padding: 15px 20px 20px;
    }

    /* Container padding for mobile to prevent overflow */
    .page-gdpr__section,
    .page-gdpr__card,
    .page-gdpr__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-gdpr__section {
        padding-left: 0;
        padding-right: 0;
    }
    .page-gdpr__hero-section .page-gdpr__container {
        padding-left: 0;
        padding-right: 0;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-content {
        margin-top: -40px;
        padding: 20px 10px 30px;
    }
    .page-gdpr__hero-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }
    .page-gdpr__hero-description {
        font-size: 0.9rem;
    }
    .page-gdpr__section-title {
        font-size: 1.5rem;
    }
    .page-gdpr__cta-title {
        font-size: 1.6rem;
    }
}