.page-gdpr {
    background-color: var(--bg-color, #08160F);
    color: var(--text-main, #F2FFF6);
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

/* HERO Section */
.page-gdpr__hero-section {
    padding-top: 10px; /* Small top padding, assuming shared.css handles body padding */
    padding-bottom: 60px;
    background-color: var(--background, #08160F);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-height: 675px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 675px;
    min-width: 200px;
    min-height: 200px;
}

.page-gdpr__hero-content {
    position: relative;
    z-index: 2;
    padding: 40px 20px;
    max-width: 900px;
    margin-top: -100px;
    background: linear-gradient(180deg, rgba(8, 22, 15, 0.8) 0%, #08160F 100%);
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-gdpr__main-title {
    font-size: clamp(2em, 3.5vw, 3.2em);
    color: var(--text-main, #F2FFF6);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-gdpr__intro-text {
    font-size: 1.1em;
    color: var(--text-secondary, #A7D9B8);
    margin-bottom: 30px;
}

.page-gdpr__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
    padding: 0 15px;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
}

.page-gdpr__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border: 2px solid transparent;
}

.page-gdpr__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 0 15px var(--glow, #57E38D);
}

.page-gdpr__btn-secondary {
    background: #ffffff;
    color: var(--primary-color, #11A84E);
    border: 2px solid var(--primary-color, #11A84E);
}

.page-gdpr__btn-secondary:hover {
    background: var(--primary-color, #11A84E);
    color: #ffffff;
    box-shadow: 0 0 15px var(--glow, #57E38D);
}

/* General Section Styling */
.page-gdpr__section-title {
    font-size: clamp(1.8em, 3vw, 2.5em);
    color: var(--text-main, #F2FFF6);
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-gdpr__section-description {
    font-size: 1.1em;
    color: var(--text-secondary, #A7D9B8);
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__dark-section {
    background-color: var(--card-bg, #11271B);
    color: var(--text-main, #F2FFF6);
    padding: 60px 0;
}

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

.page-gdpr__principle-card {
    background-color: var(--background, #08160F);
    border: 1px solid var(--border, #2E7A4E);
    border-radius: 10px;
    padding: 25px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr__card-title {
    font-size: 1.4em;
    color: var(--gold, #F2C14E);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gdpr__card-text {
    font-size: 1em;
    color: var(--text-secondary, #A7D9B8);
}

.page-gdpr__principles-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    max-width: 800px;
    min-height: 200px;
}

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

.page-gdpr__right-item {
    background-color: #ffffff;
    color: #333333;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 25px;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__right-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-gdpr__right-title {
    font-size: 1.4em;
    color: var(--deep-green, #0A4B2C);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gdpr__right-text {
    font-size: 1em;
    color: #555555;
}

.page-gdpr__rights-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    max-width: 800px;
    min-height: 200px;
}

/* Data Protection Section */
.page-gdpr__protection-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.page-gdpr__method-card {
    background-color: var(--background, #08160F);
    border: 1px solid var(--divider, #1E3A2A);
    border-radius: 10px;
    padding: 25px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.page-gdpr__method-list {
    list-style-type: disc;
    padding-left: 20px;
    color: var(--text-secondary, #A7D9B8);
}

.page-gdpr__method-list li {
    margin-bottom: 10px;
    font-size: 1em;
}

.page-gdpr__security-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    max-width: 1000px;
    min-height: 200px;
}

/* Contact Section */
.page-gdpr__contact-info {
    background-color: #ffffff;
    color: #333333;
    border-radius: 10px;
    padding: 30px;
    max-width: 700px;
    margin: 0 auto 40px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.page-gdpr__contact-text {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555555;
}

.page-gdpr__contact-list {
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-gdpr__contact-list li {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #333333;
}

.page-gdpr__contact-list strong {
    color: var(--deep-green, #0A4B2C);
}

.page-gdpr__contact-list a {
    color: var(--primary-color, #11A84E);
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr__contact-list a:hover {
    text-decoration: underline;
}

.page-gdpr__contact-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    max-width: 800px;
    min-height: 200px;
}

/* Conclusion Section - uses dark section styling */

/* All images must be responsive and not smaller than 200px */
.page-gdpr img {
    max-width: 100%;
    height: auto;
    display: block;
    min-width: 200px; /* Global minimum width */
    min-height: 200px; /* Global minimum height */
    object-fit: cover;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .page-gdpr {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-gdpr__container {
        padding: 20px 15px;
    }

    /* HERO Section */
    .page-gdpr__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-gdpr__hero-image-wrapper {
        max-height: 400px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-gdpr__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
        box-sizing: border-box !important;
    }

    .page-gdpr__hero-content {
        padding: 20px 15px;
        margin-top: -50px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

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

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

    /* Buttons and Button Containers */
    .page-gdpr__cta-buttons {
        flex-direction: column !important;
        gap: 15px;
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    /* General Section Titles and Descriptions */
    .page-gdpr__section-title {
        font-size: 1.6em;
    }

    .page-gdpr__section-description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    /* Card Grids */
    .page-gdpr__principles-grid,
    .page-gdpr__rights-grid,
    .page-gdpr__protection-methods {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-gdpr__principle-card,
    .page-gdpr__right-item,
    .page-gdpr__method-card {
        padding: 20px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-gdpr__card-title,
    .page-gdpr__right-title {
        font-size: 1.2em;
    }

    /* All Images in content area */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
        box-sizing: border-box !important;
    }

    /* Ensure section containers are also responsive */
    .page-gdpr__principles-section,
    .page-gdpr__rights-section,
    .page-gdpr__data-protection-section,
    .page-gdpr__contact-section,
    .page-gdpr__conclusion-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Specific image elements, ensure min-size is honored */
    .page-gdpr__principles-image,
    .page-gdpr__rights-image,
    .page-gdpr__security-image,
    .page-gdpr__contact-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
        box-sizing: border-box !important;
    }
}