/* gdpr.css */

.page-gdpr {
    background-color: #F4F7FB; /* Background color */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

/* Hero Section */
.page-gdpr__hero-section {
    position: relative;
    display: flex; /* For upper image, lower text arrangement */
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    background-color: #2F6BFF; /* Primary color as a fallback background */
    overflow: hidden; /* Ensure image doesn't overflow */
}

.page-gdpr__hero-image {
    width: 100%;
    max-width: 1920px; /* Max width for the image itself */
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 20px; /* Space between image and content */
}

.page-gdpr__hero-content {
    max-width: 900px;
    padding: 0 20px 40px;
    color: #FFFFFF; /* White text on blue background */
}

.page-gdpr__main-title {
    font-size: clamp(2rem, 5vw, 3.5rem); /* Responsive H1 font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #FFFFFF; /* White */
}

.page-gdpr__hero-description {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #E0E0E0; /* Lighter white for description */
}

/* General Section Styling */
.page-gdpr__section {
    padding: 60px 0;
}

.page-gdpr__section:nth-of-type(even) {
    background-color: #F4F7FB; /* Background */
}

.page-gdpr__section:nth-of-type(odd) {
    background-color: #FFFFFF; /* Card BG */
}

.page-gdpr__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1F2D3D; /* Text Main */
}

.page-gdpr__paragraph {
    font-size: 1.05rem;
    margin-bottom: 20px;
    color: #1F2D3D; /* Text Main */
}

/* Buttons */
.page-gdpr__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    text-align: center;
}

.page-gdpr__button--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button gradient */
    color: #FFFFFF;
    border: none;
}

.page-gdpr__button--primary:hover {
    box-shadow: 0 5px 15px rgba(47, 107, 255, 0.4);
    transform: translateY(-2px);
}

.page-gdpr__button--secondary {
    background-color: transparent;
    color: #2F6BFF; /* Primary color */
    border: 2px solid #2F6BFF; /* Primary color */
}

.page-gdpr__button--secondary:hover {
    background-color: #2F6BFF; /* Primary color */
    color: #FFFFFF;
}

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

.page-gdpr__feature-item {
    background-color: #FFFFFF; /* Card BG */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border color */
}

.page-gdpr__feature-icon {
    width: 250px; /* Recommended min size 200px */
    height: auto;
    max-width: 100%;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-gdpr__feature-title {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #000000; /* Custom Color_1776249996415 */
}

.page-gdpr__feature-description {
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
}

/* Rights List */
.page-gdpr__rights-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.page-gdpr__list-item {
    background-color: #FFFFFF; /* Card BG */
    border: 1px solid #D6E2FF; /* Border color */
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    color: #1F2D3D; /* Text Main */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.page-gdpr__list-item::before {
    content: '✅'; /* Using an emoji for bullet point */
    margin-right: 10px;
    font-size: 1.2rem;
    line-height: 1.6;
}

/* Data Security Image */
.page-gdpr__security-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Contact Buttons */
.page-gdpr__contact-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr__container {
        padding: 15px;
    }

    .page-gdpr__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

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

    .page-gdpr__hero-content {
        padding: 0 15px 30px;
    }

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

    .page-gdpr__contact-buttons {
        flex-direction: column;
        align-items: center;
    }

    /* Mobile image overflow prevention */
    .page-gdpr__hero-image,
    .page-gdpr__feature-icon,
    .page-gdpr__security-image {
        max-width: 100%;
        height: auto;
    }
}

/* Ensure content area images are at least 200px and responsive on mobile */
@media (max-width: 768px) {
    .page-gdpr img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce min size for content images */
        min-height: 200px; /* Enforce min size for content images */
        object-fit: cover; /* Ensure aspect ratio is maintained while covering area */
    }
}

/* Specific image size overrides to ensure minimums */
.page-gdpr__feature-icon {
    min-width: 200px;
    min-height: 200px;
}
.page-gdpr__security-image {
    min-width: 200px;
    min-height: 200px;
}
/* Hero image is already large, just ensure it meets the minimum */
.page-gdpr__hero-image {
    min-width: 200px; 
    min-height: 200px;
}

/* Contrast check for text on various backgrounds */
/* Text Main (#1F2D3D) on #F4F7FB (background) -> Good contrast (7.8:1) */
/* Text Main (#1F2D3D) on #FFFFFF (card BG) -> Good contrast (7.8:1) */
/* White (#FFFFFF) on #2F6BFF (primary) -> Good contrast (6.2:1) */
/* Lighter white (#E0E0E0) on #2F6BFF (primary) -> Good contrast (4.6:1) */
/* Custom Color_1776249996415 (#000000) on #FFFFFF (card BG) -> Good contrast (21:1) */