.page-gdpr {
    background-color: #F4F7FB;
    color: #1F2D3D;
    font-family: Arial, sans-serif;
}

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

.page-gdpr__hero-section {
    position: relative;
    background-color: #2F6BFF;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    padding-bottom: 40px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 300px; /* Ensure minimum size */
}

.page-gdpr__hero-content {
    padding: 20px;
    max-width: 900px;
    z-index: 1; /* Ensure content is above image if any layering issue */
    margin-top: 20px; /* Space between image and text */
}

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

.page-gdpr__lead-paragraph {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__cta-button {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    min-width: 200px; /* Ensure button is not too small */
    text-align: center;
}

.page-gdpr__cta-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

.page-gdpr__overview-section,
.page-gdpr__principles-section,
.page-gdpr__user-rights-section,
.page-gdpr__related-policies-section,
.page-gdpr__contact-section {
    padding: 60px 0;
}

.page-gdpr__overview-section {
    background-color: #FFFFFF;
}

.page-gdpr__section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.3;
}

.page-gdpr__text-block {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #1F2D3D;
    text-align: justify;
}

.page-gdpr__principles-section {
    background-color: #F4F7FB;
}

.page-gdpr__principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-gdpr__principle-card {
    background-color: #FFFFFF;
    border: 1px solid #D6E2FF;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2F6BFF;
    margin-bottom: 15px;
}

.page-gdpr__card-text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #1F2D3D;
}

.page-gdpr__user-rights-section {
    background-color: #FFFFFF;
}

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

.page-gdpr__rights-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
    min-width: 200px; /* Minimum image size */
    min-height: 200px; /* Minimum image size */
}

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

.page-gdpr__rights-item {
    background-color: #F4F7FB;
    border-left: 5px solid #6FA3FF;
    padding: 15px 20px;
    margin-bottom: 15px;
    border-radius: 5px;
    font-size: 1rem;
    line-height: 1.6;
    color: #1F2D3D;
}

.page-gdpr__rights-item strong {
    color: #2F6BFF;
}

.page-gdpr__related-policies-section {
    background-color: #F4F7FB;
    text-align: center;
}

.page-gdpr__policy-links {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.page-gdpr__policy-link {
    display: inline-block;
    padding: 12px 25px;
    border: 1px solid #D6E2FF;
    background-color: #FFFFFF;
    color: #2F6BFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    min-width: 180px;
}

.page-gdpr__policy-link:hover {
    background-color: #2F6BFF;
    color: #FFFFFF;
    border-color: #2F6BFF;
}

.page-gdpr__contact-section {
    background-color: #FFFFFF;
    text-align: center;
}

.page-gdpr__contact-button {
    display: inline-block;
    padding: 14px 30px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    min-width: 200px;
    text-align: center;
}

.page-gdpr__contact-button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .page-gdpr__hero-content {
        padding: 15px;
    }
    .page-gdpr__section-title {
        font-size: 1.8rem;
    }
    .page-gdpr__principles-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .page-gdpr__rights-content {
        flex-direction: column;
    }
    .page-gdpr__rights-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-image,
    .page-gdpr__rights-image {
        max-width: 100%;
        height: auto;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    .page-gdpr__lead-paragraph {
        font-size: 1rem;
    }
    .page-gdpr__section-title {
        font-size: 1.6rem;
    }
    .page-gdpr__principles-grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__principle-card,
    .page-gdpr__rights-item {
        padding: 20px;
    }
    .page-gdpr__policy-links {
        flex-direction: column;
        align-items: center;
    }
    .page-gdpr__policy-link {
        width: 80%;
    }
    /* Ensure all content area images are responsive */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-section {
        padding-bottom: 20px;
    }
    .page-gdpr__hero-content {
        padding: 10px;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.5rem, 9vw, 2rem);
    }
    .page-gdpr__lead-paragraph {
        font-size: 0.9rem;
    }
    .page-gdpr__cta-button {
        padding: 12px 25px;
        min-width: unset;
        width: 90%;
    }
    .page-gdpr__overview-section,
    .page-gdpr__principles-section,
    .page-gdpr__user-rights-section,
    .page-gdpr__related-policies-section,
    .page-gdpr__contact-section {
        padding: 40px 0;
    }
    .page-gdpr__section-title {
        font-size: 1.4rem;
    }
    .page-gdpr__text-block {
        font-size: 0.9rem;
    }
    .page-gdpr__card-title {
        font-size: 1.1rem;
    }
    .page-gdpr__card-text,
    .page-gdpr__rights-item {
        font-size: 0.85rem;
    }
    .page-gdpr__contact-button {
        padding: 12px 25px;
        min-width: unset;
        width: 90%;
    }
}