/* style/gdpr.css */

/* General styles for the GDPR page content */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

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

/* Hero Section */
.page-gdpr__hero-section {
    background: linear-gradient(135deg, #FFD700, #1E90FF);
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.page-gdpr__hero-content {
    max-width: 800px;
    z-index: 1;
}

.page-gdpr__hero-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #F0F0F0;
}

.page-gdpr__hero-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1a1a1a;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-gdpr__hero-button:hover {
    background-color: #e6c200;
    color: #000;
}

.page-gdpr__hero-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 300px;
    opacity: 0.2;
    z-index: 0;
    pointer-events: none;
}

/* General Section Styling */
.page-gdpr__section {
    padding: 60px 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid #eee;
}

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

.page-gdpr__section-title {
    font-size: 2.2em;
    color: #1E90FF;
    margin-bottom: 25px;
    text-align: center;
}

.page-gdpr__section p {
    margin-bottom: 15px;
    text-align: justify;
    color: #333;
}

.page-gdpr__section strong {
    color: #1E90FF;
}

.page-gdpr__list {
    list-style: disc inside;
    margin-bottom: 20px;
    padding-left: 20px;
    color: #333;
}

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

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

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

/* Contact Section Specifics */
.page-gdpr__contact-link {
    color: #1E90FF;
    text-decoration: none;
    font-weight: bold;
}

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

/* Call to Action Section */
.page-gdpr__cta-section {
    background-color: #1E90FF;
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
}

.page-gdpr__cta-title {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #FFD700;
}

.page-gdpr__cta-text {
    font-size: 1.1em;
    margin-bottom: 40px;
    color: #F0F0F0;
}

.page-gdpr__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #1a1a1a;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-gdpr__cta-button:hover {
    background-color: #e6c200;
    color: #000;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-gdpr__hero-title {
        font-size: 2.2em;
    }
    .page-gdpr__hero-subtitle {
        font-size: 1em;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__cta-title {
        font-size: 2em;
    }
    .page-gdpr__hero-image {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-title {
        font-size: 1.8em;
    }
    .page-gdpr__hero-subtitle {
        font-size: 0.9em;
    }
    .page-gdpr__hero-button,
    .page-gdpr__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gdpr__section-title {
        font-size: 1.5em;
    }
    .page-gdpr__list {
        padding-left: 10px;
    }
    .page-gdpr__cta-title {
        font-size: 1.6em;
    }
    .page-gdpr__hero-image {
        width: 150px;
    }
}