/* style/gdpr.css */
/* Body background color is #08160F (dark), text color should be light */

.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #F2FFF6; /* Text Main */
    line-height: 1.6;
    background-color: #08160F; /* Background */
}

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

.page-gdpr__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0; /* body handles padding-top, use small decorative padding-top */
    text-align: center;
    overflow: hidden;
    background-color: #08160F;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    display: block;
    max-width: 1920px;
    margin: 0 auto;
    object-fit: cover;
    z-index: 1;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-content {
    position: relative;
    z-index: 2;
    padding: 30px 20px;
    max-width: 900px;
    margin-top: -100px; /* Pull content up slightly over the image for visual flow */
    background-color: rgba(17, 39, 27, 0.9); /* Card B G with opacity */
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid #2E7A4E; /* Border */
}

.page-gdpr__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.page-gdpr__subtitle {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
    box-sizing: border-box;
}

.page-gdpr__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-gdpr__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-gdpr__btn-secondary {
    background: transparent;
    color: #2AD16F; /* From primary button gradient */
    border: 2px solid #2AD16F; /* From primary button gradient */
}

.page-gdpr__btn-secondary:hover {
    background: rgba(42, 209, 111, 0.1);
    color: #57E38D; /* Glow */
    border-color: #57E38D;
    transform: translateY(-2px);
}

.page-gdpr__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 30px;
    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: 4px;
    background: linear-gradient(90deg, transparent, #2AD16F, transparent);
    border-radius: 2px;
}

.page-gdpr__text-block {
    font-size: 1.05rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
    text-align: justify;
}

.page-gdpr__text-block a {
    color: #57E38D; /* Glow */
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.page-gdpr__text-block a:hover {
    color: #F2C14E; /* Gold */
    text-decoration: underline;
}

.page-gdpr__dark-section {
    background-color: #11271B; /* Card B G */
    padding: 60px 0;
}

.page-gdpr__intro-section, .page-gdpr__principles-section, .page-gdpr__m99-compliance-section, .page-gdpr__data-security-section, .page-gdpr__faq-section, .page-gdpr__contact-section {
    padding: 60px 0;
}

.page-gdpr__list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.page-gdpr__list-item {
    background-color: rgba(17, 39, 27, 0.7); /* Slightly lighter than Card B G for contrast */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 15px;
    color: #F2FFF6; /* Text Main */
    font-size: 1.05rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__list-item strong {
    color: #57E38D; /* Glow */
}

.page-gdpr__list-item a {
    color: #F2C14E; /* Gold */
    text-decoration: none;
    font-weight: 600;
}

.page-gdpr__list-item a:hover {
    text-decoration: underline;
}

.page-gdpr__cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
    margin-bottom: 40px;
}

.page-gdpr__card {
    background-color: #11271B; /* Card B G */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6), 0 0 15px #57E38D;
}

.page-gdpr__card-title {
    font-size: 1.4rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-gdpr__card-text {
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
}

.page-gdpr__card-text a {
    color: #57E38D; /* Glow */
    text-decoration: none;
    font-weight: 600;
}

.page-gdpr__card-text a:hover {
    color: #F2C14E; /* Gold */
    text-decoration: underline;
}

.page-gdpr__compliance-list, .page-gdpr__security-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.page-gdpr__compliance-item, .page-gdpr__security-item {
    background-color: rgba(30, 58, 42, 0.7); /* Deep Green with opacity */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    padding: 20px;
    color: #F2FFF6; /* Text Main */
    font-size: 1.05rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-gdpr__compliance-item strong, .page-gdpr__security-item strong {
    color: #2AD16F; /* From primary button gradient */
    display: block;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.page-gdpr__compliance-item a, .page-gdpr__security-item a {
    color: #F2C14E; /* Gold */
    text-decoration: none;
    font-weight: 600;
}

.page-gdpr__compliance-item a:hover, .page-gdpr__security-item a:hover {
    text-decoration: underline;
}

.page-gdpr__content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    margin: 40px auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid #2E7A4E; /* Border */
    object-fit: cover;
}

.page-gdpr__faq-list {
    margin-top: 30px;
}

.page-gdpr__faq-item {
    background-color: #11271B; /* Card B G */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    background-color: rgba(17, 39, 27, 0.9); /* Card B G with opacity */
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

.page-gdpr__faq-item[open] .page-gdpr__faq-question {
    background-color: #0A4B2C; /* Deep Green */
}

.page-gdpr__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-gdpr__faq-question:hover {
    background-color: rgba(10, 75, 44, 0.9); /* Slightly darker Deep Green */
}

.page-gdpr__faq-qtext {
    flex-grow: 1;
}

.page-gdpr__faq-toggle {
    font-size: 1.8rem;
    line-height: 1;
    color: #57E38D; /* Glow */
    margin-left: 15px;
}

.page-gdpr__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    text-align: justify;
}

.page-gdpr__faq-answer p {
    margin-bottom: 10px;
}

.page-gdpr__faq-answer a {
    color: #F2C14E; /* Gold */
    text-decoration: none;
    font-weight: 600;
}

.page-gdpr__faq-answer a:hover {
    text-decoration: underline;
}

.page-gdpr__text-contrast-fix {
    color: #F2FFF6 !important; /* Ensure high contrast for important text on dark backgrounds */
    background-color: transparent !important;
}

.highlight-keyword {
    color: #F2C14E; /* Gold */
    font-weight: 600;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-gdpr__hero-content {
        margin-top: -50px;
        padding: 25px 20px;
    }
    .page-gdpr__cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding: 10px 0 40px 0;
    }
    .page-gdpr__hero-image {
        border-radius: 0;
    }
    .page-gdpr__hero-content {
        margin-top: -30px;
        padding: 20px 15px;
        border-radius: 0;
        border-left: none;
        border-right: none;
    }
    .page-gdpr__main-title {
        font-size: 2rem;
    }
    .page-gdpr__subtitle {
        font-size: 1rem;
    }
    .page-gdpr__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .page-gdpr__btn-primary,
    .page-gdpr__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 15px;
        font-size: 0.95rem;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-gdpr__section-title {
        font-size: 2rem;
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    .page-gdpr__section-title::after {
        width: 60px;
        height: 3px;
    }
    .page-gdpr__text-block, .page-gdpr__list-item, .page-gdpr__card-text, .page-gdpr__compliance-item, .page-gdpr__security-item, .page-gdpr__faq-answer p {
        font-size: 0.95rem;
    }
    .page-gdpr__list-item, .page-gdpr__card, .page-gdpr__compliance-item, .page-gdpr__security-item {
        padding: 15px;
    }
    .page-gdpr__cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-gdpr__compliance-list, .page-gdpr__security-features {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .page-gdpr__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-gdpr__faq-toggle {
        font-size: 1.5rem;
    }
    .page-gdpr__faq-answer {
        padding: 0 20px 15px 20px;
    }
    /* Mobile image responsiveness */
    .page-gdpr img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-gdpr__section,
    .page-gdpr__card,
    .page-gdpr__container,
    .page-gdpr__hero-section,
    .page-gdpr__intro-section,
    .page-gdpr__principles-section,
    .page-gdpr__rights-section,
    .page-gdpr__m99-compliance-section,
    .page-gdpr__data-security-section,
    .page-gdpr__faq-section,
    .page-gdpr__contact-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-gdpr__hero-section,
    .page-gdpr__intro-section,
    .page-gdpr__principles-section,
    .page-gdpr__rights-section,
    .page-gdpr__m99-compliance-section,
    .page-gdpr__data-security-section,
    .page-gdpr__faq-section,
    .page-gdpr__contact-section {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .page-gdpr__hero-content {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .page-gdpr__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

@media (max-width: 480px) {
    .page-gdpr__main-title {
        font-size: 1.8rem;
    }
    .page-gdpr__section-title {
        font-size: 1.6rem;
    }
}