/* style/gdpr.css */
.page-gdpr {
    font-family: Arial, sans-serif;
    color: #f0f0f0;
    background-color: #0A192F;
    line-height: 1.6;
}

.page-gdpr__hero {
    background: linear-gradient(135deg, #0A192F, #1e3a5f);
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

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

.page-gdpr__title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-gdpr__subtitle {
    font-size: 1.3em;
    color: #e0e0e0;
    margin-bottom: 30px;
}

.page-gdpr__button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A192F;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-gdpr__button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-gdpr__hero-image {
    max-width: 500px;
    margin-top: 30px;
}

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

.page-gdpr__section {
    padding: 60px 20px;
    text-align: left;
}

.page-gdpr__section--alt-bg {
    background-color: #1a2b47;
}

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

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

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

.page-gdpr__text {
    font-size: 1.1em;
    color: #c0c0c0;
    margin-bottom: 20px;
}

.page-gdpr__list, .page-gdpr__data-processing-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-gdpr__list li, .page-gdpr__data-processing-list li {
    background-color: #1e3a5f;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.page-gdpr__icon {
    font-size: 1.5em;
    color: #FFD700;
    margin-right: 15px;
    min-width: 25px;
    text-align: center;
}

.page-gdpr__icon::before {
    content: '✔'; /* Placeholder for an actual icon */
    display: inline-block;
}

.page-gdpr__list-item-title {
    font-weight: bold;
    color: #FFD700;
    font-size: 1.1em;
    margin-bottom: 5px;
    display: block;
}

.page-gdpr__image-inline {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 40px auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__section--contact {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.page-gdpr__button--contact {
    margin-top: 20px;
}

.page-gdpr__contact-image {
    max-width: 400px;
    margin-top: 20px;
}

.page-gdpr__contact-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (min-width: 768px) {
    .page-gdpr__hero {
        flex-direction: row;
        text-align: left;
        padding: 100px 40px;
    }

    .page-gdpr__hero-content {
        flex: 1;
        text-align: left;
    }

    .page-gdpr__hero-image {
        flex: 1;
        margin-top: 0;
        text-align: right;
    }

    .page-gdpr__title {
        font-size: 4.5em;
    }

    .page-gdpr__subtitle {
        font-size: 1.5em;
    }

    .page-gdpr__section {
        padding: 80px 40px;
    }

    .page-gdpr__section-title {
        font-size: 3em;
    }

    .page-gdpr__list li, .page-gdpr__data-processing-list li {
        padding: 25px;
    }

    .page-gdpr__section--contact {
        flex-direction: row;
        padding: 80px 40px;
    }

    .page-gdpr__section--contact .page-gdpr__container {
        flex: 1;
        text-align: left;
    }

    .page-gdpr__contact-image {
        flex: 1;
        margin-top: 0;
        text-align: right;
    }
}

@media (max-width: 767px) {
    .page-gdpr__title {
        font-size: 2.5em;
    }
    .page-gdpr__subtitle {
        font-size: 1em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__text {
        font-size: 0.95em;
    }
    .page-gdpr__button {
        padding: 12px 25px;
        font-size: 1em;
    }
}