/* gdpr.css */
.page-gdpr {
    background-color: #08160F;
    color: #F2FFF6;
    padding-top: 10px; /* Small top padding for the first section */
    line-height: 1.6;
}

.page-gdpr__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto 40px auto;
    padding: 20px;
    text-align: center;
}

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

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

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

.page-gdpr__main-title {
    font-weight: 700;
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
    /* No fixed font-size, rely on responsive scaling and line-height */
}

.page-gdpr__intro-text {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

.page-gdpr__section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 30px;
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    border: 1px solid #2E7A4E; /* Border */
}

.page-gdpr__section-title {
    font-size: 2.2em;
    font-weight: 600;
    color: #22C768; /* Auxiliary color */
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-gdpr__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #11A84E, #22C768);
    border-radius: 5px;
}

.page-gdpr__content-wrapper {
    display: flex;
    gap: 30px;
    align-items: center;
}

.page-gdpr__content-wrapper--reverse {
    flex-direction: row-reverse;
}

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

.page-gdpr__image-block {
    flex: 1;
    min-width: 200px; /* Ensure image block does not shrink too much */
}

.page-gdpr__section-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Enforce minimum size for content images */
    min-height: 200px; /* Enforce minimum size for content images */
}

.page-gdpr p {
    margin-bottom: 15px;
    color: #F2FFF6; /* Text Main */
}

.page-gdpr__rights-list,
.page-gdpr__data-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
}

.page-gdpr__rights-item,
.page-gdpr__data-item {
    background-color: #0A4B2C; /* Deep Green */
    border-left: 4px solid #57E38D; /* Glow */
    padding: 12px 15px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 1.05em;
    color: #F2FFF6; /* Text Main */
}

.page-gdpr__rights-item strong,
.page-gdpr__data-item strong {
    color: #F2C14E; /* Gold */
}

.page-gdpr__call-to-action {
    text-align: center;
    margin-top: 40px;
}

.page-gdpr__button {
    display: inline-block;
    padding: 12px 25px;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #F2FFF6; /* Text Main */
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(34, 199, 104, 0.4);
    border: none;
    cursor: pointer;
    font-size: 1em;
}

.page-gdpr__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(34, 199, 104, 0.6);
}

.page-gdpr__button--large {
    font-size: 1.15em;
    padding: 15px 35px;
}

.page-gdpr__security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
    text-align: center;
}

.page-gdpr__feature-card {
    background-color: #0A4B2C; /* Deep Green */
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #1E3A2A; /* Divider */
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.page-gdpr__feature-card:hover {
    background-color: #11271B; /* Card BG */
    border-color: #57E38D; /* Glow */
}

.page-gdpr__feature-icon {
    width: 100%; /* Make sure it takes full width of card */
    height: auto;
    /* max-width: 150px; -- Removed to comply with min 200px rule */
    display: block;
    margin: 0 auto 20px auto;
    min-width: 200px; /* Enforce minimum size for feature images */
    min-height: 200px; /* Enforce minimum size for feature images */
    object-fit: contain;
}

.page-gdpr__feature-title {
    font-size: 1.4em;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-gdpr__content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .page-gdpr__content-wrapper--reverse {
        flex-direction: column-reverse;
    }

    .page-gdpr__hero-image-wrapper {
        margin-bottom: 20px;
    }

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

    .page-gdpr__section-image {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding: 15px;
    }

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

    .page-gdpr__intro-text {
        font-size: 1em;
    }

    .page-gdpr__section {
        margin: 40px auto;
        padding: 20px;
    }

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

    .page-gdpr__feature-icon {
        /* max-width: 120px; -- Removed to comply with min 200px rule */
    }

    .page-gdpr__button {
        padding: 10px 20px;
        font-size: 0.95em;
    }

    .page-gdpr__button--large {
        font-size: 1.05em;
        padding: 12px 25px;
    }

    /* Enforce responsive image scaling for mobile */
    .page-gdpr img {
        max-width: 100% !important;
        height: auto !important;
    }
}

@media (max-width: 480px) {
    .page-gdpr__main-title {
        font-size: 1.5em;
    }

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

    .page-gdpr__rights-item,
    .page-gdpr__data-item {
        font-size: 0.95em;
    }

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