/* style/gdpr.css */
.page-gdpr {
    font-family: Arial, sans-serif;
    color: #1A2B47; /* Dark blue for primary text */
    line-height: 1.6;
}

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

.page-gdpr__hero {
    background: linear-gradient(135deg, #1A2B47, #3A4E78); /* Dark blue gradient */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for highlight */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
}

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

.page-gdpr__section {
    padding: 60px 0;
}

.page-gdpr__section:nth-of-type(even) {
    background-color: #f8f8f8;
}

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

.page-gdpr__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

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

.page-gdpr__card {
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr__card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-gdpr__card-title {
    font-size: 1.5em;
    color: #1A2B47;
    margin-bottom: 15px;
}

.page-gdpr__card-text {
    color: #4A4A4A;
    font-size: 1em;
}

.page-gdpr__text-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #333333;
}

.page-gdpr__rights-list ul {
    list-style: none;
    padding: 0;
    margin: 0 auto;
    max-width: 800px;
}

.page-gdpr__rights-list li {
    background-color: #FFF;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #FFD700;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.page-gdpr__rights-list li:hover {
    background-color: #FFFBE6; /* Lighter gold background on hover */
}

.page-gdpr__rights-list strong {
    color: #1A2B47;
}

.page-gdpr__image-fullwidth {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__image-small {
    display: block;
    max-width: 70%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.page-gdpr__contact strong {
    color: #1A2B47;
}

.page-gdpr__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    margin: 10px;
}

.page-gdpr__btn--primary {
    background-color: #1A2B47; /* Dark blue */
    color: #FFD700; /* Gold text */
    border: 2px solid #1A2B47;
}

.page-gdpr__btn--primary:hover {
    background-color: #0F1D38; /* Darker blue */
    transform: translateY(-2px);
}

.page-gdpr__btn--secondary {
    background-color: #FFD700; /* Gold */
    color: #1A2B47; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-gdpr__btn--secondary:hover {
    background-color: #E5C100; /* Darker gold */
    transform: translateY(-2px);
}

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

    .page-gdpr__hero-description {
        font-size: 1em;
    }

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

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

    .page-gdpr__card {
        padding: 25px;
    }

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

    .page-gdpr__image-small {
        max-width: 90%;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero {
        padding: 60px 0;
    }

    .page-gdpr__hero-title {
        font-size: 2em;
    }

    .page-gdpr__hero-description {
        font-size: 0.9em;
    }

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

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

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