/* style/gdpr.css */

/* General Page Styles */
.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #e5d5b5; /* Light text color for dark backgrounds */
    background-color: #1A2A4A; /* Main dark background */
}

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

.page-gdpr__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.page-gdpr__section--alt-bg {
    background-color: #2a3d5f; /* Slightly lighter dark background for contrast */
}

/* Hero Section */
.page-gdpr__hero {
    background: linear-gradient(135deg, #1A2A4A 0%, #3a4f70 100%); /* Gradient with main color */
    color: #FFD700;
    text-align: center;
    padding: 100px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-gdpr__title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Gold for main title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__subtitle {
    font-size: 1.5em;
    margin-bottom: 40px;
    color: #e5d5b5;
}

.page-gdpr__button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #1A2A4A; /* Dark text on gold button */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-gdpr__button:hover {
    background-color: #e0b800; /* Darker gold on hover */
    transform: translateY(-2px);
}

/* Content Blocks */
.page-gdpr__content-block {
    background-color: #1A2A4A; /* Ensure content blocks have the main background */
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

.page-gdpr__section--alt-bg .page-gdpr__content-block {
    background-color: #2a3d5f; /* Lighter dark background for content blocks in alt sections */
}

.page-gdpr__heading {
    font-size: 2.5em;
    color: #FFD700; /* Gold for headings */
    margin-bottom: 30px;
    text-align: center;
}

.page-gdpr__content-block p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #d0d8e8; /* Slightly lighter text for readability */
}

.page-gdpr__content-block strong {
    color: #FFD700;
}

.page-gdpr__list {
    list-style-type: disc;
    margin-left: 20px;
    padding-left: 0;
    color: #d0d8e8;
    font-size: 1.1em;
}

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

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

/* Image & Text Flex Layout */
.page-gdpr__text-image-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.page-gdpr__text-image-flex p {
    flex: 1;
    min-width: 300px;
}

.page-gdpr__image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.page-gdpr__text-image-flex--reverse {
    flex-direction: row-reverse;
}

.page-gdpr__image--center {
    display: block;
    margin: 30px auto 0 auto;
    max-width: 400px;
}

/* Contact Section */
.page-gdpr__section--contact {
    text-align: center;
}

.page-gdpr__contact-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .page-gdpr__title {
        font-size: 2.8em;
    }
    .page-gdpr__subtitle {
        font-size: 1.2em;
    }
    .page-gdpr__heading {
        font-size: 2em;
    }
    .page-gdpr__content-block {
        padding: 30px;
    }
    .page-gdpr__text-image-flex {
        flex-direction: column;
        text-align: center;
    }
    .page-gdpr__text-image-flex--reverse {
        flex-direction: column;
    }
    .page-gdpr__image {
        order: -1; /* Image appears above text on small screens */
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .page-gdpr__title {
        font-size: 2.2em;
    }
    .page-gdpr__subtitle {
        font-size: 1em;
    }
    .page-gdpr__heading {
        font-size: 1.8em;
    }
    .page-gdpr__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gdpr__section {
        padding: 40px 0;
    }
    .page-gdpr__content-block {
        padding: 20px;
    }
    .page-gdpr__list {
        margin-left: 15px;
        font-size: 1em;
    }
    .page-gdpr__content-block p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-gdpr__title {
        font-size: 1.8em;
    }
    .page-gdpr__subtitle {
        font-size: 0.9em;
    }
    .page-gdpr__heading {
        font-size: 1.5em;
    }
    .page-gdpr__hero {
        padding: 60px 15px;
    }
    .page-gdpr__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-gdpr__list {
        margin-left: 10px;
    }
    .page-gdpr__image {
        min-width: unset;
        width: 100%;
    }
    .page-gdpr__text-image-flex {
        gap: 20px;
    }
}