.page-gdpr {
    background-color: #0A0A0A;
    color: #FFF6D6;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-bottom: 60px; /* Ensure space above footer */
}

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

.page-gdpr__hero-section {
    padding-top: 10px; /* Per fixed header rule */
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    margin-bottom: 30px;
}

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

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

.page-gdpr__main-title {
    font-size: clamp(2em, 4vw, 3.2em);
    font-weight: 700;
    color: #FFD36B;
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-gdpr__description {
    font-size: 1.1em;
    color: #FFF6D6;
    margin-bottom: 30px;
}

.page-gdpr__cta-button {
    display: inline-block;
    background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%);
    color: #0A0A0A; /* Ensures high contrast */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 211, 107, 0.4);
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-gdpr__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 211, 107, 0.6);
}

.page-gdpr__cta-button--secondary {
    background: #111111;
    color: #FFD36B;
    border: 2px solid #3A2A12;
    box-shadow: none;
}

.page-gdpr__cta-button--secondary:hover {
    background: #222222;
    color: #FFF6D6;
    border-color: #F2C14E;
}

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #FFD36B;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    padding-top: 60px;
}

.page-gdpr__intro-section, .page-gdpr__commitment-section, .page-gdpr__security-section, .page-gdpr__contact-section, .page-gdpr__faq-section {
    padding: 60px 0;
}

.page-gdpr__principles-section, .page-gdpr__rights-section {
    padding: 60px 0;
    background-color: #111111;
}

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

.page-gdpr__principle-item {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__principle-title {
    font-size: 1.6em;
    color: #F2C14E;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-gdpr__rights-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.page-gdpr__right-item {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__right-title {
    font-size: 1.5em;
    color: #F2C14E;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-gdpr__security-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 30px auto;
    max-width: 800px;
}

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

.page-gdpr__contact-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #FFF6D6;
}

.page-gdpr__text-link {
    color: #F2C14E;
    text-decoration: underline;
}

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

.page-gdpr__faq-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-gdpr__faq-item {
    background-color: #111111;
    border: 1px solid #3A2A12;
    border-radius: 10px;
    padding: 0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: #F2C14E;
    cursor: pointer;
    list-style: none; /* Remove default marker for <summary> */
}

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

.page-gdpr__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: #FFD36B;
    transition: transform 0.3s ease;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
    transform: rotate(45deg); /* Change + to X or similar */
}

.page-gdpr__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: #FFF6D6;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-answer {
    max-height: 500px; /* Arbitrary large value for smooth transition */
}

/* General image rules */
.page-gdpr img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

    .page-gdpr__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-gdpr__hero-section {
        padding-top: 10px !important;
        padding-bottom: 30px;
    }

    .page-gdpr__main-title {
        font-size: 2em; /* Adjusted for mobile */
        margin-bottom: 10px;
    }

    .page-gdpr__description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    /* Buttons */
    .page-gdpr__cta-button,
    .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: 12px 20px !important;
        font-size: 1em !important;
    }

    /* Button containers (if multiple buttons) */
    .page-gdpr__hero-content {
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 0 15px !important;
    }

    .page-gdpr__contact-section .page-gdpr__container {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .page-gdpr__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
        padding-top: 40px;
    }

    .page-gdpr__intro-section, .page-gdpr__commitment-section, .page-gdpr__security-section, .page-gdpr__contact-section, .page-gdpr__faq-section,
    .page-gdpr__principles-section, .page-gdpr__rights-section {
        padding: 40px 0;
    }

    .page-gdpr__principles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-gdpr__principle-item, .page-gdpr__right-item {
        padding: 20px;
    }

    .page-gdpr__principle-title {
        font-size: 1.4em;
    }

    .page-gdpr__right-title {
        font-size: 1.3em;
    }

    .page-gdpr__security-image {
        margin: 20px auto;
    }

    .page-gdpr__faq-question {
        font-size: 1.1em;
        padding: 15px 20px;
    }

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

    /* General image and container responsiveness for all content */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .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;
    }
}