/* style/gdpr.css */

/* General page styling */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Default text color for light backgrounds, contrast ensured */
    line-height: 1.6;
    background-color: #f8f9fa; /* Light background for the page */
}

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

/* Hero Section */
.page-gdpr__hero {
    background: linear-gradient(135deg, #1A237E 0%, #0D47A1 100%); /* Dark blue gradient */
    color: #FFFFFF; /* White text for dark background */
    padding: 80px 0;
    text-align: center;
}

.page-gdpr__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for emphasis */
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: rgba(255, 255, 255, 0.9);
}

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

/* Buttons */
.page-gdpr__button {
    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;
    white-space: nowrap;
}

.page-gdpr__button--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A237E; /* Dark blue text on gold, high contrast */
    border: 2px solid #FFD700;
}

.page-gdpr__button--primary:hover {
    background-color: #e5c300; /* Slightly darker gold on hover */
    border-color: #e5c300;
}

.page-gdpr__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text for secondary button */
    border: 2px solid #FFD700;
}

.page-gdpr__button--secondary:hover {
    background-color: #FFD700;
    color: #1A237E; /* Dark blue text on gold, high contrast */
}

.page-gdpr__button--centered {
    margin: 30px auto 0 auto;
    display: block;
    width: fit-content;
}

/* Section styling */
.page-gdpr__section {
    padding: 60px 0;
    background-color: #ffffff; /* White background for content sections */
    border-bottom: 1px solid #eee;
}

.page-gdpr__section:nth-of-type(even) {
    background-color: #f0f2f5; /* Slightly different background for alternating sections */
}

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #1A237E; /* Dark blue for main titles */
    text-align: center;
    margin-bottom: 25px;
    font-weight: bold;
}

.page-gdpr__section-intro {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #555555;
}

.page-gdpr__section-text {
    font-size: 1em;
    margin-bottom: 20px;
    color: #333333;
}

/* GDPR Principles Grid */
.page-gdpr__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.page-gdpr__grid-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-top: 5px solid #FFD700; /* Gold accent */
}

.page-gdpr__item-title {
    font-size: 1.5em;
    color: #1A237E;
    margin-bottom: 15px;
}

.page-gdpr__item-description {
    color: #444444;
}

/* Data Rights List */
.page-gdpr__list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 30px auto;
}

.page-gdpr__list li {
    background-color: #fefefe;
    padding: 15px 20px;
    margin-bottom: 10px;
    border-left: 5px solid #1A237E; /* Dark blue accent */
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    color: #333333;
}

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

/* Data Security Section */
.page-gdpr__data-security .page-gdpr__content-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.page-gdpr__data-security .page-gdpr__text-content {
    flex: 1;
    min-width: 300px;
}

.page-gdpr__data-security .page-gdpr__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

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

.page-gdpr__image--small {
    max-width: 500px;
    display: block;
    margin: 30px auto;
}

/* CTA Section */
.page-gdpr__cta {
    background: linear-gradient(45deg, #1A237E, #0D47A1); /* Darker blue gradient */
    color: #FFFFFF;
    text-align: center;
    padding: 80px 0;
}

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

.page-gdpr__cta-description {
    font-size: 1.2em;
    max-width: 700px;
    margin: 0 auto 40px auto;
    color: rgba(255, 255, 255, 0.9);
}

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

/* Footer links/copyright */
.page-gdpr__footer-links {
    padding: 30px 0;
    background-color: #1A237E;
    color: #FFFFFF;
    text-align: center;
    font-size: 0.9em;
}

.page-gdpr__copyright {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
}

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

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

    .page-gdpr__grid {
        grid-template-columns: 1fr;
    }

    .page-gdpr__hero-actions,
    .page-gdpr__cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .page-gdpr__button {
        width: 80%;
        max-width: 300px;
    }

    .page-gdpr__data-security .page-gdpr__content-flex {
        flex-direction: column;
    }
}

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

    .page-gdpr__hero-description {
        font-size: 1em;
    }

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