/* style/gdpr.css */

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

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

/* Hero Section */
.page-gdpr__hero {
    background: linear-gradient(135deg, #1A2E5B, #2A4F8B);
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffffff;
}

.page-gdpr__highlight {
    color: #FF8C00;
}

.page-gdpr__subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #e0e0e0;
}

.page-gdpr__hero-image {
    max-width: 600px;
    height: auto;
    margin-top: 30px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* General Section Styling */
.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.5em;
    color: #1A2E5B;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-gdpr__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

/* List Styling */
.page-gdpr__list {
    list-style-type: disc;
    margin-left: 40px;
    margin-bottom: 20px;
    font-size: 1.1em;
    padding-left: 20px;
}

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

/* Image Styling within sections */
.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.1);
}

/* Contact Section */
.page-gdpr__contact {
    text-align: center;
    background-color: #f0f0f0;
}

.page-gdpr__contact p {
    font-size: 1.1em;
    margin-bottom: 15px;
}

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

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

.page-gdpr__cta-text {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1A2E5B;
}

/* Button Styling */
.page-gdpr__btn {
    display: inline-block;
    background-color: #FF8C00;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-gdpr__btn:hover {
    background-color: #e67e00;
    transform: translateY(-2px);
}

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

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

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

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

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

    .page-gdpr__hero {
        padding: 50px 0;
    }

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

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

    .page-gdpr__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gdpr__list {
        padding-left: 15px;
    }
}