/* style/gdpr.css */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #FFF3E6; /* Text Main - based on dark body background #0D0E12 */
    background-color: transparent; /* Body background handled by shared.css var(--background-color) */
}

.page-gdpr__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    background-color: #0D0E12; /* Background color for hero section */
    overflow: hidden;
}

.page-gdpr__hero-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.page-gdpr__hero-section img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px; /* Constrain content width */
}

.page-gdpr__main-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem); /* Use clamp for H1 */
    font-weight: 700;
    color: #FFF3E6; /* Text Main */
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__hero-description {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: #FFF3E6; /* Text Main */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%); /* Button color */
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
    max-width: 100%; /* Button responsive */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-gdpr__cta-button:hover {
    background: linear-gradient(180deg, #FFB04D 0%, #FFA53A 100%); /* Glow */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__content-section {
    padding: 60px 20px;
    border-bottom: 1px solid rgba(168, 79, 12, 0.3); /* Border color, slightly transparent */
}

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

.page-gdpr__light-bg {
    background-color: #17191F; /* Card B G */
    color: #FFF3E6; /* Text Main */
}

.page-gdpr__dark-bg {
    background-color: #0D0E12; /* Background */
    color: #FFF3E6; /* Text Main */
}

.page-gdpr__container {
    max-width: 1000px;
    margin: 0 auto;
    box-sizing: border-box;
    width: 100%;
}

.page-gdpr__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #FFA53A; /* Auxiliary color */
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
    line-height: 1.3;
}

.page-gdpr__sub-title {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    color: #FF8C1A; /* Primary color */
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 500;
}

.page-gdpr p {
    margin-bottom: 20px;
    color: #FFF3E6; /* Text Main */
}

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

.page-gdpr__list li {
    margin-bottom: 10px;
    color: #FFF3E6; /* Text Main */
}

.page-gdpr__list strong {
    color: #FFA53A; /* Highlight list items */
}

.page-gdpr__image-inline {
    width: 100%;
    height: auto;
    max-width: 800px;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    object-fit: cover;
}

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

.page-gdpr__btn-primary {
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.page-gdpr__btn-primary:hover {
    background: linear-gradient(180deg, #FFB04D 0%, #FFA53A 100%);
}

.page-gdpr__btn-secondary {
    background: #17191F; /* Card B G */
    color: #FF8C1A; /* Primary color */
    border: 2px solid #A84F0C; /* Border color */
}

.page-gdpr__btn-secondary:hover {
    background: #0D0E12; /* Background color */
    color: #FFA53A; /* Auxiliary color */
    border-color: #FFA53A;
}

/* FAQ Section */
.page-gdpr__faq-section {
    padding: 60px 20px;
    background-color: #0D0E12; /* Background */
    color: #FFF3E6; /* Text Main */
}

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

details.page-gdpr__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid #A84F0C; /* Border color */
    overflow: hidden;
    background: #17191F; /* Card B G */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

details.page-gdpr__faq-item summary.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    color: #FFF3E6; /* Text Main */
}

details.page-gdpr__faq-item summary.page-gdpr__faq-question::-webkit-details-marker {
    display: none;
}

details.page-gdpr__faq-item summary.page-gdpr__faq-question:hover {
    background: rgba(255, 165, 58, 0.1); /* Slightly lighter hover */
}

.page-gdpr__faq-qtext {
    flex: 1;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: #FFF3E6; /* Text Main */
}

.page-gdpr__faq-toggle {
    font-size: 28px;
    font-weight: bold;
    color: #FFA53A; /* Auxiliary color */
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
    line-height: 1;
}

details.page-gdpr__faq-item .page-gdpr__faq-answer {
    padding: 0 20px 20px;
    background: #0D0E12; /* Background */
    border-radius: 0 0 8px 8px;
    color: #FFF3E6; /* Text Main */
}

.page-gdpr__faq-answer p {
    margin-bottom: 0;
    color: #FFF3E6; /* Text Main */
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-gdpr__hero-section {
        padding: 40px 15px;
    }
    .page-gdpr__content-section {
        padding: 40px 15px;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding-top: 10px !important; /* Ensure small top padding */
        padding-bottom: 30px;
    }
    .page-gdpr__hero-section img {
        border-radius: 4px;
    }
    .page-gdpr__main-title {
        font-size: 2.2rem;
    }
    .page-gdpr__hero-description {
        font-size: 1rem;
    }
    .page-gdpr__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-gdpr__contact-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-gdpr__section-title {
        font-size: 1.8rem;
    }
    .page-gdpr__sub-title {
        font-size: 1.3rem;
    }
    .page-gdpr p, .page-gdpr__list li {
        font-size: 15px;
    }
    .page-gdpr__faq-qtext {
        font-size: 16px;
    }
    .page-gdpr__faq-toggle {
        font-size: 24px;
    }
    /* Image responsive overrides */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    .page-gdpr__content-section,
    .page-gdpr__faq-section {
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-gdpr__container {
        padding-left: 0;
        padding-right: 0;
    }
}