.page-gdpr {
    max-width: 1366px;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Verdana, Arial, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #FFFFFF;
}

.page-gdpr__hero-section {
    background: #017439;
    padding: 20px 16px 24px;
    margin: 0;
}

.page-gdpr__hero-image {
    text-align: center;
    margin-bottom: 20px;
}

.page-gdpr__hero-image img {
    display: block;
    width: 100%;
    max-width: 1020px;
    height: auto;
    aspect-ratio: 17 / 5;
    object-fit: cover;
    border-radius: 12px;
    margin: 0 auto;
}

.page-gdpr__hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.page-gdpr__hero-title {
    color: #FFFFFF;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.5px;
    margin: 0 0 12px;
}

.page-gdpr__hero-description {
    color: #FFFFFF;
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 100%;
}

.page-gdpr__hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-gdpr__btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s ease, transform 0.2s ease;
    box-sizing: border-box;
    border: 2px solid transparent;
}

.page-gdpr__btn--primary {
    background-color: #C30808;
    color: #FFFF00;
    border-color: #C30808;
}

.page-gdpr__btn--secondary {
    background-color: #FFFFFF;
    color: #C30808;
    border-color: #C30808;
}

.page-gdpr__btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-gdpr__content-section {
    padding: 30px 16px;
    border-bottom: 1px solid #e0e0e0;
}

.page-gdpr__container {
    max-width: 1000px;
    margin: 0 auto;
}

.page-gdpr__section-title {
    color: #017439;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.3;
}

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

.page-gdpr__principles-item {
    background-color: #f9f9f9;
    border-left: 4px solid #017439;
    padding: 16px;
    border-radius: 8px;
}

.page-gdpr__principles-item h3 {
    color: #017439;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.page-gdpr__principles-item p {
    margin: 0;
}

.page-gdpr__list {
    margin: 0 0 20px 20px;
}

.page-gdpr__list li {
    margin-bottom: 10px;
}

.page-gdpr__faq {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.page-gdpr__faq-item {
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background-color: #FFFFFF;
    overflow: hidden;
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 16px;
    cursor: pointer;
    list-style: none;
    font-weight: 600;
    color: #017439;
}

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

.page-gdpr__faq-toggle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #017439;
    line-height: 1;
}

.page-gdpr__faq-answer {
    padding: 0 16px 16px;
    border-top: 1px solid #e0e0e0;
    padding-top: 12px;
    color: #333333;
}

.page-gdpr__faq-item[open] .page-gdpr__faq-toggle {
    color: #C30808;
}

.page-gdpr__guide-section {
    background-color: #f9f9f9;
    padding: 30px 16px 40px;
}

.page-gdpr__guide-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 16px 16px 40px;
}

.page-gdpr__guide-title {
    text-align: center;
    color: #017439;
    font-weight: 700;
    margin-bottom: 24px;
}

.page-gdpr__guide-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.page-gdpr__guide-figure {
    margin: 0;
    width: 100%;
    max-width: 800px;
}

.page-gdpr__guide-figure img {
    display: block;
    width: 100%;
    max-width: 800px;
    height: auto;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    border-radius: 8px;
}

.page-gdpr__guide-figure figcaption {
    color: #555555;
    font-size: 0.9rem;
    margin-top: 8px;
}

.page-gdpr__guide-content p {
    max-width: 800px;
}

@media (max-width: 1024px) {
    .page-gdpr__hero-title {
        font-size: 1.6rem;
    }
    .page-gdpr__hero-description {
        font-size: 1rem;
    }
    .page-gdpr__btn {
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding-top: 10px;
    }
    .page-gdpr__hero-image {
        margin-bottom: 16px;
    }
    .page-gdpr__hero-image img {
        aspect-ratio: 2 / 1;
    }
    .page-gdpr__hero-content {
        text-align: center;
    }
    .page-gdpr__hero-title {
        font-size: 1.4rem;
    }
    .page-gdpr__hero-description {
        font-size: 0.95rem;
    }
    .page-gdpr__hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .page-gdpr__btn {
        max-width: 100%;
        box-sizing: border-box;
        white-space: normal;
        word-wrap: break-word;
        width: 100%;
        text-align: center;
    }
    .page-gdpr__principles-grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__section-title {
        font-size: 1.5rem;
    }
    .page-gdpr__guide-figure {
        width: 100%;
    }
    .page-gdpr img {
        max-width: 100% !important;
        height: auto !important;
    }
}