.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF5E1; /* Text Main */
    background-color: #B71C1C; /* Background */
}

.page-gdpr__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Fixed spacing */
    padding-bottom: 60px;
    color: #FFF5E1;
    background-color: #B71C1C;
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Adjust based on actual hero image height */
    overflow: hidden;
    margin-bottom: 40px;
}

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

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

.page-gdpr__main-title {
    font-size: 3.2em;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFCC66; /* Glow */
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

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

.page-gdpr__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 15px;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-gdpr__btn-primary {
    background: linear-gradient(180deg, #FFD86A 0%, #E6B800 100%); /* Button */
    color: #7A0E0E; /* Deep Red for contrast */
    border: 2px solid #F2B544; /* Border */
}

.page-gdpr__btn-primary:hover {
    background: linear-gradient(180deg, #E6B800 0%, #FFD86A 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 211, 77, 0.4);
}

.page-gdpr__btn-secondary {
    background-color: #D32F2F; /* Card BG */
    color: #FFF5E1; /* Text Main */
    border: 2px solid #F2B544; /* Border */
}

.page-gdpr__btn-secondary:hover {
    background-color: #B71C1C;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.4);
}

.page-gdpr__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 40px;
    box-sizing: border-box;
}

.page-gdpr__section-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 30px;
    text-align: center;
    color: #F4D34D; /* Gold */
}

.page-gdpr__sub-title {
    font-size: 1.8em;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #FFCC66; /* Glow */
}

.page-gdpr__text-block {
    font-size: 1.05em;
    margin-bottom: 20px;
    color: #FFF5E1;
}

.page-gdpr__dark-section {
    background-color: #7A0E0E; /* Deep Red */
    color: #FFF5E1;
    padding-top: 60px;
    padding-bottom: 60px;
}

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

.page-gdpr__card {
    background-color: #D32F2F; /* Card BG */
    border: 1px solid #F2B544; /* Border */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: #FFF5E1;
}

.page-gdpr__card-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #FFCC66; /* Glow */
}

.page-gdpr__image-feature,
.page-gdpr__image-about,
.page-gdpr__image-blog {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px;
    min-height: 200px;
    object-fit: cover;
}

.page-gdpr__rights-list,
.page-gdpr__data-list,
.page-gdpr__security-list,
.page-gdpr__sharing-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-gdpr__rights-list li,
.page-gdpr__data-list li,
.page-gdpr__security-list li,
.page-gdpr__sharing-list li {
    background-color: #B71C1C;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 5px solid #F4D34D; /* Gold */
    color: #FFF5E1;
    font-size: 1.05em;
}

.page-gdpr__rights-list li strong,
.page-gdpr__data-list li strong,
.page-gdpr__security-list li strong,
.page-gdpr__sharing-list li strong {
    color: #FFCC66; /* Glow */
}

.page-gdpr__cta-buttons--centered {
    margin-top: 50px;
    margin-bottom: 50px;
}

.page-gdpr__contact-info {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #FFF5E1;
}

.page-gdpr__contact-link {
    color: #F4D34D; /* Gold */
    text-decoration: underline;
}

.page-gdpr__contact-link:hover {
    color: #FFCC66;
}

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

.page-gdpr__faq-item {
    background-color: #D32F2F; /* Card BG */
    border: 1px solid #F2B544; /* Border */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #FFF5E1;
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.2em;
    font-weight: bold;
    cursor: pointer;
    color: #FFCC66; /* Glow */
    list-style: none;
}

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

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

.page-gdpr__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: #F4D34D; /* Gold */
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
    content: '−';
}

.page-gdpr__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1.05em;
    color: #FFF5E1;
}

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

.page-gdpr__cta-buttons--last {
    margin-top: 60px;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-gdpr__hero-image-wrapper {
        max-height: 500px;
    }

    .page-gdpr__main-title {
        font-size: 2.8em;
    }

    .page-gdpr__section-title {
        font-size: 2.2em;
    }

    .page-gdpr__sub-title {
        font-size: 1.6em;
    }

    .page-gdpr__content-area {
        padding: 50px 30px;
    }

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

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

    .page-gdpr__hero-section {
        padding-top: 10px !important; /* Fixed spacing */
        padding-bottom: 40px;
    }

    .page-gdpr__hero-image-wrapper {
        max-height: 300px;
        margin-bottom: 30px;
    }

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

    .page-gdpr__hero-content {
        padding: 0 15px;
    }

    .page-gdpr__main-title {
        font-size: 2em;
        margin-bottom: 15px;
    }

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

    .page-gdpr__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1em;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    .page-gdpr__content-area {
        padding: 40px 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-gdpr__section-title {
        font-size: 1.8em;
        margin-bottom: 25px;
    }

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

    .page-gdpr__text-block {
        font-size: 1em;
        margin-bottom: 15px;
    }

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

    .page-gdpr__card {
        padding: 20px;
    }

    .page-gdpr__card-title {
        font-size: 1.2em;
    }

    .page-gdpr__image-feature,
    .page-gdpr__image-about,
    .page-gdpr__image-blog {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        margin: 30px auto;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-gdpr__rights-list li,
    .page-gdpr__data-list li,
    .page-gdpr__security-list li,
    .page-gdpr__sharing-list li {
        padding: 12px 15px;
        font-size: 1em;
    }

    .page-gdpr__cta-buttons--centered,
    .page-gdpr__cta-buttons--last {
        margin-top: 40px;
        margin-bottom: 40px;
    }

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

    .page-gdpr__faq-toggle {
        font-size: 1.2em;
    }

    .page-gdpr__faq-answer {
        padding: 0 15px 15px 15px;
        font-size: 1em;
    }
}