.page-gdpr {
    color: #333333; /* Dark text for light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

.page-gdpr__hero-section {
    position: relative;
    color: #ffffff;
    text-align: center;
    padding: 0;
    overflow: hidden;
}

.page-gdpr__hero-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 500px;
}

.page-gdpr__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.page-gdpr__hero-content {
    position: relative;
    z-index: 1;
    background: rgba(10, 35, 66, 0.75); /* Semi-transparent overlay with primary color */
    padding: 60px 40px;
    border-radius: 10px;
    max-width: 900px;
    margin: 20px;
}

.page-gdpr__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #E5B80B; /* Accent color for title */
    line-height: 1.2;
}

.page-gdpr__intro-text {
    font-size: 1.3em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-gdpr__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
}

.page-gdpr__btn--primary {
    background-color: #E5B80B; /* Accent color */
    color: #0A2342;
    border: 2px solid #E5B80B;
}

.page-gdpr__btn--primary:hover {
    background-color: #d4a70a;
    border-color: #d4a70a;
    transform: translateY(-2px);
}

.page-gdpr__btn--secondary {
    background-color: transparent;
    color: #E5B80B;
    border: 2px solid #E5B80B;
}

.page-gdpr__btn--secondary:hover {
    background-color: rgba(229, 184, 11, 0.1);
    transform: translateY(-2px);
}

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

.page-gdpr__section-title {
    font-size: 2.8em;
    color: #0A2342; /* Primary color */
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-gdpr__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #E5B80B;
    border-radius: 2px;
}

.page-gdpr__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #555555;
}

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

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

.page-gdpr__principle-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-gdpr__principle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-gdpr__principle-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    min-height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}

.page-gdpr__card-title {
    font-size: 1.8em;
    color: #0A2342;
    margin-bottom: 15px;
}

.page-gdpr__card-text {
    font-size: 1em;
    color: #666666;
}

.page-gdpr__rights-section {
    padding: 60px 0;
}

.page-gdpr__rights-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px auto;
    max-width: 800px;
}

.page-gdpr__rights-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #333333;
    display: flex;
    align-items: center;
}

.page-gdpr__rights-item::before {
    content: '✅';
    margin-right: 15px;
    font-size: 1.2em;
}

.page-gdpr__contact-info {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #0A2342;
    font-weight: bold;
}

.page-gdpr__btn--contact {
    display: block;
    width: fit-content;
    margin: 0 auto;
    background-color: #0A2342;
    color: #ffffff;
    border: 2px solid #0A2342;
}

.page-gdpr__btn--contact:hover {
    background-color: #1a3c61;
    border-color: #1a3c61;
    transform: translateY(-2px);
}

.page-gdpr__faqs-section {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.page-gdpr__faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.page-gdpr__faq-item {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
    overflow: hidden;
}

.page-gdpr__faq-question {
    width: 100%;
    background-color: #E5B80B;
    color: #0A2342;
    padding: 20px 25px;
    text-align: left;
    font-size: 1.2em;
    font-weight: bold;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

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

.page-gdpr__faq-question::after {
    content: '+';
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.page-gdpr__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

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

.page-gdpr__faq-answer.active {
    max-height: 200px; /* Adjust based on content */
    padding: 20px 25px;
}

.page-gdpr__faq-answer p {
    margin: 0;
    color: #555555;
}

.page-gdpr__cta-section {
    background-color: #0A2342;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.page-gdpr__cta-title {
    font-size: 3em;
    color: #E5B80B;
    margin-bottom: 20px;
}

.page-gdpr__cta-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

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

/* Media Queries for Responsiveness */
@media (max-width: 1024px) {
    .page-gdpr__main-title {
        font-size: 2.8em;
    }
    .page-gdpr__section-title {
        font-size: 2.4em;
    }
    .page-gdpr__cta-title {
        font-size: 2.6em;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-content {
        padding: 40px 20px;
    }
    .page-gdpr__main-title {
        font-size: 2.2em;
    }
    .page-gdpr__intro-text {
        font-size: 1.1em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__section-description {
        font-size: 1em;
    }
    .page-gdpr__principles-grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__rights-item {
        font-size: 1em;
    }
    .page-gdpr__faq-question {
        font-size: 1.1em;
    }
    .page-gdpr__cta-title {
        font-size: 2.2em;
    }
    .page-gdpr__cta-description {
        font-size: 1em;
    }
    .page-gdpr__hero-image,
    .page-gdpr__principle-image,
    .page-gdpr__container img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-content {
        padding: 30px 15px;
    }
    .page-gdpr__main-title {
        font-size: 1.8em;
    }
    .page-gdpr__intro-text {
        font-size: 0.95em;
    }
    .page-gdpr__hero-actions {
        flex-direction: column;
    }
    .page-gdpr__btn {
        width: 100%;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__card-title {
        font-size: 1.5em;
    }
    .page-gdpr__cta-title {
        font-size: 1.8em;
    }
    .page-gdpr__faq-question {
        padding: 15px 20px;
    }
    .page-gdpr__faq-answer.active {
        padding: 15px 20px;
    }
}