/* style/gdpr.css */

.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
}

.page-gdpr__hero {
    background: linear-gradient(135deg, #4A2780 0%, #6f3eab 100%); /* Primary color with a lighter variant */
    color: #fff;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.page-gdpr__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFD700; /* Secondary color for emphasis */
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin-bottom: 30px;
}

.page-gdpr__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Secondary color for CTA */
    color: #4A2780; /* Primary color for text */
    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;
    border: 2px solid #FFD700;
}

.page-gdpr__cta-button:hover {
    background-color: #e6c200; /* Slightly darker yellow on hover */
    color: #331e5a;
}

.page-gdpr__hero-image-wrapper {
    margin-top: 40px;
    max-width: 600px;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr__section {
    padding: 60px 0;
    border-bottom: 1px solid #eee;
}

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

.page-gdpr__section-title {
    font-size: 2.2em;
    color: #4A2780; /* Primary color for section titles */
    margin-bottom: 30px;
    text-align: center;
}

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

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

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

.page-gdpr__list li strong {
    color: #4A2780;
}

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

.page-gdpr__contact-link {
    color: #4A2780;
    text-decoration: none;
    font-weight: bold;
}

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

.page-gdpr__cta-button--bottom {
    margin-top: 40px;
    display: block;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-gdpr__hero {
        padding: 60px 15px;
    }

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

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

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

    .page-gdpr__list {
        margin-left: 20px;
    }

    .page-gdpr__section-image {
        max-width: 95%;
    }
}

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

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

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

    .page-gdpr__section p,
    .page-gdpr__list li {
        font-size: 0.95em;
    }
}