/* style/gdpr.css */

.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Dark text for default light body background */
    padding-top: var(--header-offset, 120px); /* Fixed header offset */
    overflow-x: hidden; /* Prevent horizontal scroll on main content */
}

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

.page-gdpr__hero-section {
    background-color: #f8f8f8;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 40px;
}

.page-gdpr__hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
}

.page-gdpr__hero-title {
    font-size: 2.8em;
    color: #1E90FF; /* Royal Blue for main title */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

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

.page-gdpr__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    min-width: 150px;
    text-align: center;
    font-size: 1em;
}

.page-gdpr__button--primary {
    background-color: #FFD700; /* Gold */
    color: #333333;
    border: 2px solid #FFD700;
}

.page-gdpr__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-gdpr__button--secondary {
    background-color: transparent;
    color: #1E90FF; /* Royal Blue */
    border: 2px solid #1E90FF;
}

.page-gdpr__button--secondary:hover {
    background-color: #1E90FF;
    color: #ffffff;
    transform: translateY(-2px);
}

.page-gdpr__section-title {
    font-size: 2.2em;
    color: #1E90FF;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 40px;
}

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

/* Principles Section */
.page-gdpr__principles-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-gdpr__principles-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    justify-content: center;
}

.page-gdpr__principles-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-gdpr__principles-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.page-gdpr__principles-list li {
    background-color: #fdfdfd;
    border-left: 4px solid #FFD700; /* Gold accent */
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1em;
}

.page-gdpr__principles-list li strong {
    color: #1E90FF;
}

/* Rights Section */
.page-gdpr__rights-section {
    padding: 60px 0;
    background-color: #f8f8f8;
}

.page-gdpr__rights-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    justify-content: center;
}

.page-gdpr__rights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.page-gdpr__rights-list li {
    background-color: #ffffff;
    border-right: 4px solid #1E90FF; /* Royal Blue accent */
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1em;
}

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

.page-gdpr__rights-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-gdpr__contact-cta {
    text-align: center;
    margin-top: 50px;
}

.page-gdpr__cta-text {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #333333;
}

/* Security Section */
.page-gdpr__security-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.page-gdpr__security-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
    justify-content: center;
}

.page-gdpr__security-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-gdpr__security-list {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.page-gdpr__security-list li {
    background-color: #fdfdfd;
    border-left: 4px solid #FFD700; /* Gold accent */
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1em;
}

.page-gdpr__security-list li strong {
    color: #1E90FF;
}

/* General CTA Section */
.page-gdpr__cta-section {
    background-color: #1E90FF; /* Royal Blue background */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-gdpr__cta-container {
    max-width: 900px;
}

.page-gdpr__cta-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold title on blue background */
    margin-bottom: 20px;
}

.page-gdpr__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.page-gdpr__button--large {
    padding: 15px 35px;
    font-size: 1.1em;
    background-color: #FFD700;
    color: #333333;
    border: 2px solid #FFD700;
}

.page-gdpr__button--large:hover {
    background-color: #e6c200;
}

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

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

    .page-gdpr__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

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

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

    .page-gdpr__principles-content, 
    .page-gdpr__rights-content, 
    .page-gdpr__security-content {
        flex-direction: column;
        text-align: center;
    }

    .page-gdpr__principles-list, 
    .page-gdpr__rights-list, 
    .page-gdpr__security-list {
        min-width: unset;
        max-width: 100%;
    }

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

    /* Ensure all content images are responsive and not smaller than 200px */
    .page-gdpr__hero-image,
    .page-gdpr__principles-image,
    .page-gdpr__rights-image,
    .page-gdpr__security-image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum width */
        min-height: 200px; /* Enforce minimum height */
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-section {
        padding: 40px 0;
    }
    .page-gdpr__hero-title {
        font-size: 1.6em;
    }
    .page-gdpr__section-title {
        font-size: 1.5em;
    }
    .page-gdpr__cta-title {
        font-size: 1.8em;
    }
}

/* Global rule for content images to prevent them from being too small */
/* This applies to all img tags within .page-gdpr, excluding shared header/footer icons */
.page-gdpr img {
    min-width: 200px;
    min-height: 200px;
}

/* Override for images that might be explicitly smaller in shared components (not generated here) */
/* This ensures images generated by this page strictly follow the 200px min size */
.page-gdpr__hero-image, 
.page-gdpr__principles-image, 
.page-gdpr__rights-image, 
.page-gdpr__security-image {
    min-width: 200px !important;
    min-height: 200px !important;
}