/* style/gdpr.css */

/* General styles for the GDPR page */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #212529; /* Dark grey for good contrast on light backgrounds */
    background-color: #ffffff;
}

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

/* Hero Section */
.page-gdpr__hero {
    background: linear-gradient(135deg, #007bff, #4da3ff); /* Gradient from primary to a lighter blue */
    color: #ffffff; /* White text on blue background */
    padding: 80px 0;
    text-align: center;
}

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

.page-gdpr__intro {
    font-size: 1.1em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #e0e0e0; /* Slightly off-white for readability */
}

.page-gdpr__intro a {
    color: #ffc107; /* Auxiliary color for links in hero */
    text-decoration: underline;
}

.page-gdpr__intro a:hover {
    color: #fff;
}

/* Buttons */
.page-gdpr__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    font-size: 1em;
}

.page-gdpr__btn--primary {
    background-color: #ffc107; /* Auxiliary color for primary button */
    color: #212529; /* Dark text on light auxiliary background */
    border: 2px solid #ffc107;
}

.page-gdpr__btn--primary:hover {
    background-color: #e0a800; /* Darker auxiliary on hover */
    color: #fff;
}

.page-gdpr__btn--secondary {
    background-color: transparent;
    color: #007bff; /* Primary color for secondary button text */
    border: 2px solid #007bff;
}

.page-gdpr__btn--secondary:hover {
    background-color: #007bff;
    color: #ffffff;
}

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

.page-gdpr__section--alt {
    background-color: #f8f9fa; /* Light grey background for alternating sections */
}

.page-gdpr__section--contact {
    background-color: #007bff; /* Primary background for contact section */
    color: #ffffff;
}

.page-gdpr__section--contact .page-gdpr__subtitle,
.page-gdpr__section--contact p,
.page-gdpr__section--contact a {
    color: #ffffff;
}

.page-gdpr__section--contact a {
    text-decoration: underline;
}

.page-gdpr__section--contact a:hover {
    color: #ffc107;
}

.page-gdpr__subtitle {
    font-size: 2em;
    color: #007bff; /* Primary color for subtitles */
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}

.page-gdpr__section--alt .page-gdpr__subtitle {
    color: #0056b3; /* Darker primary for contrast on light grey */
}

.page-gdpr__text-content {
    flex: 1;
    padding: 20px;
}

.page-gdpr__text-content p {
    margin-bottom: 15px;
}

.page-gdpr__text-content a {
    color: #007bff;
    text-decoration: underline;
}

.page-gdpr__text-content a:hover {
    color: #0056b3;
}

.page-gdpr__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

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

/* Image styles */
.page-gdpr__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

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

.page-gdpr__image--large {
    max-width: 80%;
}

.page-gdpr__image-wrapper--center {
    margin-top: 40px;
}

/* Layout for content grid */
.page-gdpr__content-grid {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-gdpr__content-grid--reverse {
    flex-direction: row-reverse;
}

/* Contact Info */
.page-gdpr__contact-info {
    text-align: center;
    padding: 40px 20px;
}

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

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

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

    .page-gdpr__content-grid {
        flex-direction: column;
    }

    .page-gdpr__content-grid--reverse {
        flex-direction: column; /* Revert to column for smaller screens */
    }

    .page-gdpr__text-content,
    .page-gdpr__image-wrapper {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero,
    .page-gdpr__section {
        padding: 40px 0;
    }

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

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

    .page-gdpr__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}