.page-gdpr {
    background-color: #0D0E12;
    color: #FFF3E6;
    font-family: Arial, sans-serif;
}

.page-gdpr__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 40px;
    text-align: center;
    background: linear-gradient(180deg, #100224 0%, #0D0E12 100%);
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-bottom: 20px;
}

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

.page-gdpr__hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.page-gdpr__main-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #FFB04D, #FFA53A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Fallback for browsers that don't support -webkit-text-fill-color */
}

.page-gdpr__intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFF3E6;
}

.page-gdpr__contact-button {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #FFF3E6;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 165, 58, 0.4);
}

.page-gdpr__contact-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 165, 58, 0.6);
}

.page-gdpr__content-area, .page-gdpr__data-collection-section, .page-gdpr__security-section, .page-gdpr__contact-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-gdpr__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    background: linear-gradient(90deg, #FFB04D, #FFA53A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent; /* Fallback */
}

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

.page-gdpr__card {
    background-color: #17191F;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(255, 176, 77, 0.2);
}

.page-gdpr__card-image {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

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

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

.page-gdpr__data-collection-section, .page-gdpr__security-section, .page-gdpr__contact-section {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.page-gdpr__data-collection-section:nth-of-type(odd) {
    flex-direction: row-reverse; /* Image on right for odd sections */
}

.page-gdpr__text-block {
    flex: 1;
}

.page-gdpr__text-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #FFF3E6;
}

.page-gdpr__section-image {
    flex: 1;
    width: 100%;
    height: auto;
    max-width: 600px;
    border-radius: 12px;
    object-fit: cover;
    min-width: 200px; /* Ensure minimum size */
    min-height: 200px; /* Ensure minimum size */
}

.page-gdpr__learn-more-button, .page-gdpr__submit-request-button {
    display: inline-block;
    padding: 10px 25px;
    border-radius: 20px;
    background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
    color: #FFF3E6;
    text-decoration: none;
    font-weight: bold;
    margin-top: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__learn-more-button:hover, .page-gdpr__submit-request-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 165, 58, 0.5);
}

@media (max-width: 849px) {
    .page-gdpr__hero-section {
        padding: 10px 0 30px;
    }
    .page-gdpr__hero-content {
        padding: 0 15px;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-gdpr__intro-text {
        font-size: 1rem;
    }
    .page-gdpr__content-area, .page-gdpr__data-collection-section, .page-gdpr__security-section, .page-gdpr__contact-section {
        padding: 40px 15px;
        flex-direction: column; /* Stack sections vertically */
        gap: 30px;
    }
    .page-gdpr__data-collection-section:nth-of-type(odd) {
        flex-direction: column; /* Keep stacked vertically */
    }
    .page-gdpr__section-title {
        font-size: clamp(1.6rem, 5vw, 2rem);
        margin-bottom: 30px;
    }
    .page-gdpr__card-grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__card-image, .page-gdpr__section-image {
        max-width: 100%;
        height: auto;
    }
    /* Ensure all images within .page-gdpr are responsive and don't overflow */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    .page-gdpr__text-block p {
        font-size: 1rem;
    }
}

@media (max-width: 549px) {
    .page-gdpr__hero-section {
        padding: 10px 0 20px;
    }
    .page-gdpr__hero-content {
        padding: 0 10px;
    }
    .page-gdpr__main-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
    }
    .page-gdpr__intro-text {
        font-size: 0.95rem;
    }
    .page-gdpr__contact-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    .page-gdpr__content-area, .page-gdpr__data-collection-section, .page-gdpr__security-section, .page-gdpr__contact-section {
        padding: 30px 10px;
        gap: 20px;
    }
    .page-gdpr__section-title {
        font-size: clamp(1.4rem, 6vw, 1.8rem);
        margin-bottom: 25px;
    }
    .page-gdpr__card {
        padding: 20px;
    }
    .page-gdpr__card-image {
        width: 150px;
        height: 150px;
        min-width: 150px; /* Adjust minimum size for smaller screens if needed, but keep >=200px is preferred */
        min-height: 150px;
    }
    .page-gdpr__card-title {
        font-size: 1.3rem;
    }
    .page-gdpr__card-text {
        font-size: 0.9rem;
    }
    .page-gdpr__learn-more-button, .page-gdpr__submit-request-button {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    /* Ensure all images within .page-gdpr are responsive and don't overflow */
    .page-gdpr img {
        max-width: 100%;
        height: auto;
        display: block;
    }
}

/* Ensure content area images maintain minimum size if not directly within card or hero */
.page-gdpr__section-image {
    min-width: 200px;
    min-height: 200px;
}

/* Specific rule to prevent small image sizes in content area for all images */
.page-gdpr__content-area img,
.page-gdpr__data-collection-section img,
.page-gdpr__security-section-image img,
.page-gdpr__contact-section img {
    min-width: 200px;
    min-height: 200px;
}

/* Responsive override for card images to ensure they don't shrink below 200px display size */
@media (max-width: 849px) {
    .page-gdpr__card-image {
        width: 200px; /* Fixed width to ensure it doesn't go below 200px */
        height: 200px; /* Fixed height */
        margin-left: auto;
        margin-right: auto;
    }
}