.page-gdpr {
    font-family: Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-color);
}

.page-gdpr__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 0 40px 0;
    background-color: var(--primary-color);
    color: var(--card-bg);
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-gdpr__hero-content-wrapper {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    padding: 20px;
}

.page-gdpr__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--card-bg);
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-gdpr__cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: nowrap;
    cursor: pointer;
}

.page-gdpr__cta-button--primary {
    background: var(--button-gradient);
    color: var(--card-bg);
    border: 1px solid var(--primary-color);
}

.page-gdpr__cta-button--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta-button--secondary {
    background-color: var(--card-bg);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.page-gdpr__cta-button--secondary:hover {
    background-color: var(--border-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__content-section {
    padding: 60px 20px;
    background-color: var(--card-bg);
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-gdpr__content-section:nth-of-type(even) {
    background-color: var(--bg-color);
}

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

.page-gdpr__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--text-black);
    margin-bottom: 25px;
    text-align: center;
}

.page-gdpr__section-intro {
    font-size: 1.1em;
    line-height: 1.7;
    margin-bottom: 30px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.page-gdpr__list-item {
    background-color: var(--bg-color);
    border-left: 5px solid var(--primary-color);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    line-height: 1.6;
    font-size: 1em;
    color: var(--text-main);
}

.page-gdpr__list-item strong {
    color: var(--text-black);
}

.page-gdpr__content-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto 20px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-gdpr__contact .page-gdpr__cta-button--primary {
    margin-top: 20px;
}

@media (max-width: 1024px) {
    .page-gdpr__main-title {
        font-size: 2.5em;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding-top: 10px;
        padding-bottom: 30px;
    }
    .page-gdpr__hero-image-wrapper {
        max-height: 300px;
    }
    .page-gdpr__hero-content-wrapper {
        padding: 15px;
    }
    .page-gdpr__main-title {
        font-size: 2em; /* Adjusted for smaller screens */
        margin-bottom: 15px;
    }
    .page-gdpr__description {
        font-size: 1em;
        margin-bottom: 20px;
    }
    .page-gdpr__cta-group {
        flex-direction: column;
        gap: 10px;
    }
    .page-gdpr__cta-button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-gdpr__content-section {
        padding: 40px 15px;
        margin-bottom: 15px;
    }
    .page-gdpr__section-title {
        font-size: 1.6em;
        margin-bottom: 20px;
    }
    .page-gdpr__section-intro {
        font-size: 0.95em;
        margin-bottom: 25px;
    }
    .page-gdpr__list-item {
        padding: 12px 15px;
    }
    .page-gdpr__content-image {
        max-width: 100%;
        height: auto;
        margin: 30px auto 15px auto;
    }
}

@media (max-width: 480px) {
    .page-gdpr__main-title {
        font-size: 1.8em;
    }
    .page-gdpr__section-title {
        font-size: 1.4em;
    }
    .page-gdpr__list-item {
        font-size: 0.9em;
    }
}

/* Ensure content area images are not too small */
.page-gdpr__content-image {
    min-width: 200px;
    min-height: 200px;
}

/* Mobile content area image overflow prevention */
@media (max-width: 768px) {
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
    .page-gdpr {
        overflow-x: hidden;
    }
}