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

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

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

.page-gdpr__hero-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__hero-description {
    font-size: 1.2em;
    color: #E0E0E0;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-gdpr__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #0F1A2B; /* Dark text on gold */
    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__cta-button:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-3px);
}

.page-gdpr__cta-button--secondary {
    background-color: #007bff; /* A different color for secondary CTA if needed, or stick to gold */
    color: #FFFFFF;
}

.page-gdpr__cta-button--secondary:hover {
    background-color: #0056b3;
}

.page-gdpr__hero-image-wrapper {
    margin-top: 50px;
    display: flex;
    justify-content: center;
}

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

.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__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

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

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

.page-gdpr__commitment-item {
    background-color: #1a2a3e; /* Slightly lighter dark blue */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-gdpr__commitment-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 15px;
}

.page-gdpr__commitment-item p {
    color: #CCCCCC;
    font-size: 1em;
}

.page-gdpr__rights-list,
.page-gdpr__security-list {
    list-style-type: disc;
    padding-left: 40px;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-gdpr__rights-list li,
.page-gdpr__security-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-gdpr__rights-list strong,
.page-gdpr__security-list strong {
    color: #FFD700;
}

.page-gdpr__contact-link {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-gdpr__contact-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

/* 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__commitment-grid {
        grid-template-columns: 1fr;
    }

    .page-gdpr__rights-list,
    .page-gdpr__security-list {
        padding-left: 20px;
    }
}

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

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

    .page-gdpr__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

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

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

    .page-gdpr__text-content,
    .page-gdpr__rights-list li,
    .page-gdpr__security-list li {
        font-size: 0.95em;
    }
}