.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for general text on dark background */
    background-color: #1A202C;
    line-height: 1.6;
}

.page-gdpr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-gdpr-hero {
    background: linear-gradient(135deg, #FFD700, #1A202C);
    color: #1A202C;
    text-align: center;
    padding: 80px 20px;
    border-bottom: 5px solid #FFD700;
}

.page-gdpr-title {
    font-size: 3.2em;
    color: #1A202C;
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.page-gdpr-subtitle {
    font-size: 1.4em;
    color: #333333;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr-cta-button {
    display: inline-block;
    padding: 15px 35px;
    background-color: #1A202C;
    color: #FFD700;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

.page-gdpr-cta-button:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-gdpr-section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

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

.page-gdpr-section-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-gdpr-sub-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-gdpr p {
    margin-bottom: 15px;
    color: #E0E0E0;
    font-size: 1.05em;
}

.page-gdpr a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-gdpr a:hover {
    color: #FFF;
    text-decoration: underline;
}

.page-gdpr-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-gdpr-list li {
    margin-bottom: 10px;
    font-size: 1.05em;
}

.page-gdpr-list li strong {
    color: #FFD700;
}

.page-gdpr-image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-gdpr-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
    display: block;
    margin: 0 auto;
}

/* FAQ Section Specific Styles */
.page-gdpr-faq-list {
    margin-top: 30px;
}

.page-gdpr .faq-item {
    margin-bottom: 15px;
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    overflow: hidden;
}

.page-gdpr .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    background: #1A202C;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-gdpr .faq-question:hover {
    background-color: #2a3447;
}

.page-gdpr .faq-question h3 {
    margin: 0;
    font-size: 1.25em;
    color: #FFD700;
    flex-grow: 1;
}

.page-gdpr .faq-toggle {
    font-size: 1.8em;
    font-weight: bold;
    color: #FFD700;
    transition: transform 0.3s ease;
    margin-left: 15px;
}

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

.page-gdpr .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
    padding: 0 25px;
    background-color: #2a3447;
}

.page-gdpr .faq-item.active .faq-answer {
    max-height: 500px; /* Sufficient height to contain content */
    padding: 20px 25px;
}

.page-gdpr .faq-answer p {
    color: #E0E0E0;
    margin-bottom: 0;
    font-size: 1.05em;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gdpr-title {
        font-size: 2.8em;
    }
    .page-gdpr-subtitle {
        font-size: 1.2em;
    }
    .page-gdpr-section-title {
        font-size: 2em;
    }
    .page-gdpr-sub-title {
        font-size: 1.6em;
    }
    .page-gdpr-cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-gdpr-hero {
        padding: 60px 15px;
    }
    .page-gdpr-title {
        font-size: 2.2em;
    }
    .page-gdpr-subtitle {
        font-size: 1em;
    }
    .page-gdpr-section {
        padding: 40px 0;
    }
    .page-gdpr-section-title {
        font-size: 1.8em;
    }
    .page-gdpr-sub-title {
        font-size: 1.4em;
    }
    .page-gdpr p, .page-gdpr-list li, .page-gdpr .faq-answer p {
        font-size: 0.95em;
    }
    .page-gdpr .faq-question {
        padding: 15px 20px;
    }
    .page-gdpr .faq-question h3 {
        font-size: 1.1em;
    }
    .page-gdpr .faq-toggle {
        font-size: 1.5em;
    }
    .page-gdpr .faq-answer {
        padding: 0 20px;
    }
    .page-gdpr .faq-item.active .faq-answer {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-gdpr-title {
        font-size: 1.8em;
    }
    .page-gdpr-subtitle {
        font-size: 0.9em;
    }
    .page-gdpr-section-title {
        font-size: 1.5em;
    }
    .page-gdpr-sub-title {
        font-size: 1.2em;
    }
    .page-gdpr-list {
        margin-left: 20px;
    }
    .page-gdpr .faq-question h3 {
        font-size: 1em;
    }
    .page-gdpr .faq-toggle {
        font-size: 1.3em;
    }
}