/* style/gdpr.css */

/* Base styles for the GDPR page content */
.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text on light background */
    background-color: #f8f8f8; /* Light background */
}

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

/* Hero Section */
.page-gdpr__hero {
    background: linear-gradient(135deg, #0A2463, #3a5c9d); /* Dark blue gradient */
    color: #ffffff; /* White text on dark background */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.page-gdpr__title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
}

.page-gdpr__description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* General Section Styling */
.page-gdpr__section {
    padding: 60px 0;
}

.page-gdpr__section--alt {
    background-color: #eef2f6; /* Slightly different background for contrast */
}

.page-gdpr__subtitle {
    font-size: 2.2em;
    color: #0A2463; /* Dark blue for subtitles */
    margin-bottom: 30px;
    text-align: center;
}

.page-gdpr__section p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555555;
}

.page-gdpr__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    padding-left: 0;
    font-size: 1.05em;
    color: #555555;
}

.page-gdpr__list li {
    margin-bottom: 10px;
}

.page-gdpr__list strong {
    color: #0A2463;
}

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

/* Contact Info */
.page-gdpr__contact-info {
    text-align: center;
    margin-top: 30px;
    font-size: 1.1em;
    color: #555555;
}

.page-gdpr__contact-info p {
    margin-bottom: 10px;
}

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

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

/* Buttons */
.page-gdpr__cta-group {
    text-align: center;
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

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

.page-gdpr__button--primary {
    background-color: #0A2463; /* Dark blue button */
    color: #ffffff; /* White text */
}

.page-gdpr__button--primary:hover {
    background-color: #FFD700; /* Gold on hover */
    color: #0A2463; /* Dark blue text on hover */
    transform: translateY(-2px);
}

.page-gdpr__button--secondary {
    background-color: #FFD700; /* Gold button */
    color: #0A2463; /* Dark blue text */
    border: 2px solid #FFD700;
}

.page-gdpr__button--secondary:hover {
    background-color: #0A2463; /* Dark blue on hover */
    color: #FFD700; /* Gold text on hover */
    transform: translateY(-2px);
}

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

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

    .page-gdpr__description,
    .page-gdpr__section p,
    .page-gdpr__list,
    .page-gdpr__contact-info {
        font-size: 1em;
    }

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

@media (max-width: 480px) {
    .page-gdpr__hero {
        padding: 60px 0;
    }
    .page-gdpr__title {
        font-size: 2em;
    }
    .page-gdpr__subtitle {
        font-size: 1.5em;
    }
    .page-gdpr__cta-group {
        flex-direction: column;
        gap: 15px;
    }
}