.page-gdpr {
    font-family: Arial, sans-serif;
    color: #E0E0E0;
    background-color: #1A1A2E;
    line-height: 1.6;
}

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

.page-gdpr__hero {
    background: linear-gradient(135deg, #1A1A2E 0%, #301934 100%);
    padding: 100px 0;
    text-align: center;
    color: #E6B34B;
    border-bottom: 2px solid #E6B34B;
}

.page-gdpr__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E6B34B;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

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

.page-gdpr__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__btn--primary {
    background-color: #E6B34B;
    color: #1A1A2E;
}

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

.page-gdpr__btn--secondary {
    background-color: #301934;
    color: #E6B34B;
    border: 1px solid #E6B34B;
}

.page-gdpr__btn--secondary:hover {
    background-color: #4a2d50;
    transform: translateY(-2px);
}

.page-gdpr__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(230, 179, 75, 0.2);
}

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

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #E6B34B;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-gdpr__text-content p {
    margin-bottom: 1.5em;
    font-size: 1.1em;
    color: #D0D0D0;
}

.page-gdpr__content-wrapper {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-gdpr__content-wrapper--reverse {
    flex-direction: row-reverse;
}

.page-gdpr__content-wrapper > div {
    flex: 1;
}

.page-gdpr__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__right-item {
    background-color: #2A2A4A;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-gdpr__right-item:hover {
    transform: translateY(-5px);
    background-color: #383860;
}

.page-gdpr__right-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    filter: brightness(1.2);
}

.page-gdpr__right-item h3 {
    color: #E6B34B;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-gdpr__right-item p {
    color: #C0C0C0;
    font-size: 1em;
}

.page-gdpr__action-text {
    text-align: center;
    margin-top: 50px;
    font-size: 1.2em;
    color: #E6B34B;
}

.page-gdpr__contact p {
    text-align: center;
    font-size: 1.1em;
    margin-bottom: 20px;
}

.page-gdpr__contact .page-gdpr__btn {
    margin: 30px auto 0 auto;
    display: block;
    width: fit-content;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gdpr__hero-title {
        font-size: 2.8em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-gdpr__content-wrapper--reverse {
        flex-direction: column;
    }
    .page-gdpr__image-content {
        order: -1; /* Image first on mobile for reverse layout */
    }
    .page-gdpr__rights-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero {
        padding: 80px 0;
    }
    .page-gdpr__hero-title {
        font-size: 2.2em;
    }
    .page-gdpr__hero-description {
        font-size: 1em;
    }
    .page-gdpr__section {
        padding: 40px 0;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gdpr__rights-grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__right-item {
        padding: 25px;
    }
    .page-gdpr__right-icon {
        width: 80px;
        height: 80px;
    }
    .page-gdpr__right-item h3 {
        font-size: 1.3em;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero {
        padding: 60px 0;
    }
    .page-gdpr__hero-title {
        font-size: 1.8em;
    }
    .page-gdpr__hero-description {
        font-size: 0.9em;
    }
    .page-gdpr__section-title {
        font-size: 1.5em;
    }
    .page-gdpr__btn {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }
    .page-gdpr__btn:last-child {
        margin-bottom: 0;
    }
    .page-gdpr__container {
        padding: 0 15px;
    }
}