/* style/gdpr.css */

/* Base styles for the GDPR page */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark grey for readability, contrast with #f8f8f8 background: 13.9:1 */
    background-color: #f8f8f8; /* Light background */
}

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

/* Hero Section */
.page-gdpr__hero {
    background: linear-gradient(135deg, #0A2240, #1A3E62); /* Dark blue gradient */
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1; /* Subtle background image */
    z-index: 0;
}

.page-gdpr__hero > .page-gdpr__container {
    position: relative;
    z-index: 1;
}

.page-gdpr__title {
    font-size: 3.2em;
    color: #FFD700; /* Gold for main title, contrast with #0A2240 background: 10.74:1 */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__subtitle {
    font-size: 1.3em;
    color: #FFFFFF; /* White for subtitle, contrast with #0A2240 background: 14.93:1 */
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* General Section Styles */
.page-gdpr__section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-gdpr__section--alt {
    background-color: #f0f0f0; /* Slightly darker light grey */
}

.page-gdpr__heading {
    font-size: 2.2em;
    color: #0A2240; /* Dark blue for headings, contrast with #FFFFFF background: 14.93:1 */
    margin-bottom: 25px;
    font-weight: bold;
    text-align: center;
}

.page-gdpr__text {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: justify;
    color: #333333; /* Dark grey for body text, contrast with #FFFFFF background: 13.9:1 */
}

.page-gdpr__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
}

.page-gdpr__list--ordered {
    list-style: decimal;
}

.page-gdpr__list li {
    margin-bottom: 10px;
    font-size: 1.05em;
    color: #444444; /* Slightly lighter dark grey for list items, contrast with #FFFFFF background: 11.8:1 */
}

.page-gdpr__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);
}

.page-gdpr__image--right {
    float: right;
    margin-left: 30px;
    width: 40%;
    min-width: 300px;
}

/* Call to Action Buttons */
.page-gdpr__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    margin: 10px;
}

/* Primary Button (for light backgrounds) */
.page-gdpr__btn--primary {
    background-color: #0A2240; /* Dark blue */
    color: #FFD700; /* Gold text, contrast with #0A2240 background: 10.74:1 */
    border: 2px solid #0A2240;
}

.page-gdpr__btn--primary:hover {
    background-color: #1A3E62; /* Slightly lighter dark blue */
    color: #FFFFFF; /* White text, contrast with #1A3E62 background: 10.74:1 */
    border-color: #1A3E62;
    transform: translateY(-2px);
}

/* Secondary Button (for light backgrounds) */
.page-gdpr__btn--secondary {
    background-color: transparent;
    border: 2px solid #0A2240; /* Dark blue border */
    color: #0A2240; /* Dark blue text, contrast with #FFFFFF background: 14.93:1 */
}

.page-gdpr__btn--secondary:hover {
    background-color: #0A2240;
    color: #FFD700; /* Gold text, contrast with #0A2240 background: 10.74:1 */
    transform: translateY(-2px);
}

/* Specific button styling for Hero section (dark background) */
.page-gdpr__hero .page-gdpr__btn--primary {
    background-color: #FFD700; /* Gold background */
    color: #333333; /* Dark grey text for contrast with #FFD700 background: 4.79:1 */
    border-color: #FFD700;
}
.page-gdpr__hero .page-gdpr__btn--primary:hover {
    background-color: #e6c200; /* Darker gold */
    color: #000000; /* Black text for contrast with #e6c200 background: 5.61:1 */
    border-color: #e6c200;
}


/* CTA Section (dark background) */
.page-gdpr__cta-section {
    background: linear-gradient(135deg, #0A2240, #1A3E62);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.page-gdpr__heading--white {
    color: #FFD700; /* Gold heading on dark background, contrast with #0A2240 background: 10.74:1 */
}

.page-gdpr__text--white {
    color: #FFFFFF; /* White text on dark background, contrast with #0A2240 background: 14.93:1 */
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.page-gdpr__cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* Button styling specific to CTA section (dark background) */
.page-gdpr__cta-section .page-gdpr__btn--primary {
    background-color: #FFD700; /* Gold background */
    color: #333333; /* Dark grey text for contrast with #FFD700 background: 4.79:1 */
    border-color: #FFD700;
}
.page-gdpr__cta-section .page-gdpr__btn--primary:hover {
    background-color: #e6c200; /* Darker gold */
    color: #000000; /* Black text for contrast with #e6c200 background: 5.61:1 */
    border-color: #e6c200;
}

.page-gdpr__cta-section .page-gdpr__btn--secondary {
    background-color: transparent;
    border: 2px solid #FFD700; /* Gold border */
    color: #FFD700; /* Gold text, contrast with #0A2240 background: 10.74:1 */
}
.page-gdpr__cta-section .page-gdpr__btn--secondary:hover {
    background-color: #FFD700;
    color: #000000; /* Black text for contrast with #FFD700 background: 5.61:1 */
    border-color: #FFD700;
}

/* Image floating clear fix */
.page-gdpr__section::after {
    content: "";
    display: table;
    clear: both;
}

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

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

    .page-gdpr__text,
    .page-gdpr__list li {
        font-size: 1em;
    }

    .page-gdpr__image--right {
        float: none;
        margin: 30px auto;
        width: 80%;
    }

    .page-gdpr__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gdpr__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

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

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

    .page-gdpr__heading {
        font-size: 1.5em;
    }

    .page-gdpr__hero,
    .page-gdpr__section,
    .page-gdpr__cta-section {
        padding: 40px 0;
    }
}