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

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

.page-gdpr__hero {
    background: linear-gradient(135deg, #0A192F 0%, #2c3e50 100%);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__subtitle {
    font-size: 1.5em;
    color: #f5e6d0;
    margin-bottom: 40px;
}

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

.page-gdpr__section--intro {
    background-color: #1a2a40;
}

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

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

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

.page-gdpr__link-inline: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: #1a2a40;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.page-gdpr__card:hover {
    transform: translateY(-5px);
    background-color: #2c3e50;
}

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

.page-gdpr__card-text {
    font-size: 1em;
    color: #ccc;
    margin-bottom: 20px;
}

.page-gdpr__card-icon {
    width: 60px;
    height: 60px;
    margin-top: 15px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-gdpr__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 30px;
    color: #f5e6d0;
}

.page-gdpr__list-item {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.page-gdpr__list-item strong {
    color: #FFD700;
}

.page-gdpr__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 20px;
    text-align: center;
}

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

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

.page-gdpr__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

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

.page-gdpr__contact-info {
    font-size: 1.2em;
    text-align: center;
    margin-top: 20px;
    color: #f5e6d0;
}

.page-gdpr__contact-info .page-gdpr__link-inline {
    font-size: 1em;
}

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

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

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

    .page-gdpr__paragraph, .page-gdpr__list-item, .page-gdpr__card-text {
        font-size: 1em;
    }

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

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

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

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

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

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

    .page-gdpr__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}