/* style/gdpr.css */
:root {
    --primary-color: #0056b3;
    --secondary-color: #ffc107;
    --text-color-light: #ffffff;
    --text-color-dark: #333333;
    --bg-dark: #0a0a0a;
    --bg-card-dark: rgba(255, 255, 255, 0.08);
    --border-color-dark: rgba(255, 255, 255, 0.15);
}

.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
    color: var(--text-color-light); /* Light text on dark body background */
    background-color: var(--bg-dark);
    padding-top: 120px; /* Desktop: Adjust for fixed header */
}

.page-gdpr__hero-banner {
    background: linear-gradient(135deg, var(--primary-color), #003366);
    padding: 60px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.page-gdpr__hero-title {
    font-size: 3.2em;
    color: var(--text-color-light);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-gdpr__highlight {
    color: var(--secondary-color);
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__cta-button {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-color-dark);
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta-button:hover {
    background: #e6b000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__cta-button--secondary {
    background: var(--primary-color);
    color: var(--text-color-light);
    border: 2px solid var(--secondary-color);
}

.page-gdpr__cta-button--secondary:hover {
    background: #003d80;
    border-color: #e6b000;
}

.page-gdpr__section {
    padding: 60px 20px;
    background-color: var(--bg-dark);
}

.page-gdpr__section--intro {
    background-color: #1a1a1a;
}

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

.page-gdpr__heading {
    font-size: 2.5em;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-gdpr__content-block {
    background-color: var(--bg-card-dark);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    color: var(--text-color-light);
}

.page-gdpr__content-block p {
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.8;
}

.page-gdpr__link-text {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-gdpr__link-text:hover {
    color: #e6b000;
    text-decoration: underline;
}

.page-gdpr__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-gdpr__service-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color-dark);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-gdpr__card-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
    border-radius: 5px;
    object-fit: cover;
}

.page-gdpr__card-title {
    font-size: 1.6em;
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gdpr__card-description {
    font-size: 1em;
    color: #c0c0c0;
    line-height: 1.6;
}

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

.page-gdpr__article-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color-dark);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.page-gdpr__article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-gdpr__article-title {
    font-size: 1.4em;
    color: var(--secondary-color);
    margin: 20px 20px 10px 20px;
    font-weight: bold;
}

.page-gdpr__article-title a {
    color: inherit;
    text-decoration: none;
}

.page-gdpr__article-title a:hover {
    text-decoration: underline;
}

.page-gdpr__article-excerpt {
    font-size: 0.95em;
    color: #c0c0c0;
    padding: 0 20px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.page-gdpr__read-more {
    display: inline-block;
    color: var(--primary-color);
    background-color: var(--secondary-color);
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin: 0 20px 20px 20px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.page-gdpr__read-more:hover {
    background-color: #e6b000;
    color: var(--text-color-dark);
}

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

.page-gdpr__faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    background-color: var(--bg-card-dark);
    border: 1px solid var(--border-color-dark);
}

.page-gdpr__faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s ease, opacity 0.4s ease;
    padding: 0 15px;
    opacity: 0;
    color: #c0c0c0;
}

.page-gdpr__faq-item.active .page-gdpr__faq-answer {
    max-height: 2000px !important;
    padding: 20px 15px !important;
    opacity: 1;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 0 0 5px 5px;
}

.page-gdpr__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 5px;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.page-gdpr__faq-question:hover {
    background: rgba(255, 255, 255, 0.12);
}

.page-gdpr__faq-question:active {
    background: rgba(255, 255, 255, 0.15);
}

.page-gdpr__faq-question h3 {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 1.15em;
    font-weight: 600;
    line-height: 1.5;
    pointer-events: none;
    color: var(--text-color-light);
}

.page-gdpr__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    line-height: 1;
    color: var(--secondary-color);
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
    pointer-events: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.page-gdpr__faq-item.active .page-gdpr__faq-toggle {
    color: var(--primary-color);
    transform: rotate(45deg);
}

.page-gdpr__description {
    font-size: 1.1em;
    text-align: center;
    margin-bottom: 30px;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-gdpr__hero-title {
        font-size: 2.5em;
    }

    .page-gdpr__heading {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-gdpr {
        padding-top: 100px !important; /* Mobile: Adjust for fixed header */
    }

    .page-gdpr__hero-banner {
        padding: 40px 15px;
    }

    .page-gdpr__hero-title {
        font-size: 2em;
        margin-bottom: 15px;
    }

    .page-gdpr__hero-description {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .page-gdpr__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-gdpr__section {
        padding: 40px 15px;
    }

    .page-gdpr__heading {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .page-gdpr__content-block {
        padding: 20px;
    }

    .page-gdpr__content-block p {
        font-size: 1em;
    }

    .page-gdpr__service-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-gdpr__service-card, .page-gdpr__article-card {
        padding: 20px;
    }

    .page-gdpr__card-title {
        font-size: 1.4em;
    }

    .page-gdpr__article-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-gdpr__article-image {
        height: 180px;
    }

    .page-gdpr__article-title {
        font-size: 1.2em;
        margin: 15px 15px 8px 15px;
    }

    .page-gdpr__article-excerpt {
        font-size: 0.9em;
        padding: 0 15px;
    }

    .page-gdpr__read-more {
        margin: 0 15px 15px 15px;
    }

    .page-gdpr__faq-question {
        padding: 15px;
        flex-wrap: wrap;
    }
    
    .page-gdpr__faq-question h3 {
        font-size: 1em;
        margin-bottom: 0;
        width: calc(100% - 40px);
    }
    
    .page-gdpr__faq-toggle {
        margin-left: 10px;
        width: 24px;
        height: 24px;
        font-size: 20px;
    }
    
    .page-gdpr__faq-answer {
        padding: 0 15px;
    }
    
    .page-gdpr__faq-item.active .page-gdpr__faq-answer {
        padding: 15px !important;
    }

    /* Ensure all images and containers are responsive */
    .page-gdpr img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-gdpr__section,
    .page-gdpr__container,
    .page-gdpr__content-block,
    .page-gdpr__service-card,
    .page-gdpr__article-card,
    .page-gdpr__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-gdpr__content-block {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .page-gdpr__service-card,
    .page-gdpr__article-card {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}