/* style/gdpr.css */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #F8F8F8; /* Light text for dark background */
    background-color: #0A192F; /* Main dark background */
    line-height: 1.6;
}

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

.page-gdpr__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1A2E4B 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

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

.page-gdpr__hero .page-gdpr__container {
    position: relative;
    z-index: 1;
}

.page-gdpr__title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr__subtitle {
    font-size: 1.3em;
    color: #F8F8F8;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.page-gdpr__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
}

.page-gdpr__btn--primary:hover {
    background-color: #e6c200;
}

.page-gdpr__btn--secondary {
    background-color: #0A192F;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-gdpr__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
}

.page-gdpr__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

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

.page-gdpr__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #E0E0E0;
    text-align: justify;
}

.page-gdpr__link-brand {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr__link-brand:hover {
    text-decoration: underline;
}

.page-gdpr__link-text {
    color: #FFD700;
    text-decoration: none;
}

.page-gdpr__link-text:hover {
    text-decoration: underline;
}

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

.page-gdpr__card {
    background-color: #1A2E4B;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-gdpr__card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
    text-align: center;
}

.page-gdpr__card-text {
    color: #E0E0E0;
    font-size: 1em;
    text-align: justify;
}

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

.page-gdpr__list-item {
    background-color: #1A2E4B;
    margin-bottom: 15px;
    padding: 20px 30px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

.page-gdpr__list-item:hover {
    background-color: #2A4060;
}

.page-gdpr__list-heading {
    font-size: 1.3em;
    color: #FFD700;
    margin-bottom: 10px;
}

.page-gdpr__list-text {
    color: #E0E0E0;
    font-size: 1em;
    text-align: justify;
}

.page-gdpr__content-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-gdpr__contact-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: center;
}

.page-gdpr__contact-item {
    font-size: 1.1em;
    margin-bottom: 10px;
    color: #E0E0E0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-gdpr__title {
        font-size: 2.5em;
    }

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

    .page-gdpr__heading {
        font-size: 2em;
    }

    .page-gdpr__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-gdpr__title {
        font-size: 2em;
    }

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

    .page-gdpr__heading {
        font-size: 1.8em;
    }

    .page-gdpr__btn {
        padding: 10px 20px;
        font-size: 1em;
    }

    .page-gdpr__card-title {
        font-size: 1.3em;
    }

    .page-gdpr__list-heading {
        font-size: 1.2em;
    }
}