/* style/gdpr.css */

.page-gdpr {
    background-color: #F4F7FB; /* Background */
    color: #1F2D3D; /* Text Main */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: 10px; /* Small top padding for the first section, relying on body for --header-offset */
}

.page-gdpr__hero-section {
    position: relative;
    max-width: 1390px; /* Max width for content, similar to boxed feel */
    margin: 0 auto 40px auto;
    padding: 20px;
    box-sizing: border-box;
    display: flex; /* Use flex for image and content stacking */
    flex-direction: column; /* Stack image above content */
    align-items: center; /* Center content horizontally */
    text-align: center;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    max-width: 1200px; /* Max width for the image */
    border-radius: 12px;
    object-fit: cover;
    margin-bottom: 30px; /* Space between image and text */
}

.page-gdpr__hero-content {
    background-color: #FFFFFF; /* Card BG */
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    max-width: 900px;
    width: 100%;
    box-sizing: border-box;
}

.page-gdpr__main-title {
    font-size: clamp(2em, 4vw, 3.2em); /* Responsive font size */
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__hero-description {
    font-size: 1.1em;
    color: #1F2D3D; /* Text Main */
    max-width: 700px;
    margin: 0 auto;
}

.page-gdpr__section {
    background-color: #FFFFFF; /* Card BG */
    max-width: 1390px; /* Max width for content */
    margin: 30px auto;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    box-sizing: border-box;
}

.page-gdpr__container {
    max-width: 900px; /* Inner container for text */
    margin: 0 auto;
}

.page-gdpr__section-title {
    font-size: 2.2em;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 25px;
    font-weight: bold;
    text-align: center;
}

.page-gdpr__section-text {
    font-size: 1em;
    margin-bottom: 15px;
    color: #1F2D3D; /* Text Main */
}

.page-gdpr__section-image {
    width: 100%;
    height: auto;
    max-width: 800px; /* Ensure content images are not too small */
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    object-fit: cover;
}

.page-gdpr__list {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 20px;
}

.page-gdpr__list-item {
    margin-bottom: 10px;
    color: #1F2D3D; /* Text Main */
}

.page-gdpr__button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

.page-gdpr__button {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button */
    color: #FFFFFF;
    border: none;
}

.page-gdpr__button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(47, 107, 255, 0.3); /* Glow effect with main color */
}

.page-gdpr__button--secondary {
    background: #6FA3FF; /* Auxiliary color for secondary button */
    color: #FFFFFF;
}

.page-gdpr__button--secondary:hover {
    background: #2F6BFF; /* Primary color on hover for secondary button */
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(111, 163, 255, 0.3);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-gdpr__hero-section,
    .page-gdpr__section {
        margin-left: 20px;
        margin-right: 20px;
        padding: 30px;
    }

    .page-gdpr__main-title {
        font-size: clamp(1.8em, 5vw, 2.8em);
    }

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

@media (max-width: 768px) {
    .page-gdpr__hero-section,
    .page-gdpr__section {
        margin-left: 15px;
        margin-right: 15px;
        padding: 20px;
    }

    .page-gdpr__main-title {
        font-size: clamp(1.6em, 6vw, 2.5em);
    }

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

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

    .page-gdpr__hero-image,
    .page-gdpr__section-image {
        max-width: 100%;
        height: auto;
    }

    .page-gdpr__button-group {
        flex-direction: column;
        align-items: center;
    }

    .page-gdpr__button {
        width: 100%;
        max-width: 280px; /* Limit button width on mobile */
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-content {
        padding: 20px 15px;
    }
    .page-gdpr__section {
        padding: 15px;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.4em, 7vw, 2em);
    }
    .page-gdpr__section-title {
        font-size: 1.5em;
    }
    .page-gdpr__hero-description,
    .page-gdpr__section-text,
    .page-gdpr__list-item {
        font-size: 0.95em;
    }
}