/* style/gdpr.css */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Default text color on dark backgrounds */
    background-color: #0A192F;
}

.page-gdpr__hero-section {
    background: linear-gradient(135deg, #0A192F, #1A365B);
    padding: 100px 20px;
    text-align: center;
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #E0B92B;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-gdpr__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

.page-gdpr__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    white-space: nowrap;
}

.page-gdpr__btn--primary {
    background-color: #E0B92B;
    color: #0A192F;
    border: 2px solid #E0B92B;
}

.page-gdpr__btn--primary:hover {
    background-color: #f0c94f;
    color: #000000;
}

.page-gdpr__btn--secondary {
    background-color: transparent;
    color: #E0B92B;
    border: 2px solid #E0B92B;
    margin-left: 15px;
}

.page-gdpr__btn--secondary:hover {
    background-color: #E0B92B;
    color: #0A192F;
}

.page-gdpr__btn--accent {
    background-color: #E0B92B;
    color: #0A192F;
    border: 2px solid #E0B92B;
}

.page-gdpr__btn--accent:hover {
    background-color: #f0c94f;
    color: #000000;
}

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

.page-gdpr__section {
    padding: 80px 0;
    background-color: #1A2B40;
    color: #FFFFFF;
}

.page-gdpr__section--dark {
    background-color: #0A192F;
}

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #E0B92B;
    text-align: center;
    margin-bottom: 60px;
}

.page-gdpr__section-title--light {
    color: #E0B92B;
}

.page-gdpr__content-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-gdpr__text-content {
    flex: 1;
    min-width: 300px;
    line-height: 1.8;
}

.page-gdpr__text-content p {
    margin-bottom: 15px;
    color: #D3D3D3;
}

.page-gdpr__text-content strong {
    color: #E0B92B;
}

.page-gdpr__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-gdpr__section-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    text-align: center;
}

.page-gdpr__feature-item {
    background-color: #1A2B40;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-gdpr__feature-item:hover {
    transform: translateY(-5px);
}

.page-gdpr__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(224, 185, 43, 0.7));
}

.page-gdpr__feature-title {
    font-size: 1.5em;
    color: #E0B92B;
    margin-bottom: 15px;
}

.page-gdpr__feature-item p {
    color: #D3D3D3;
    line-height: 1.6;
}

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

.page-gdpr__rights-list li {
    background-color: #0A192F;
    padding: 20px;
    border-left: 5px solid #E0B92B;
    border-radius: 5px;
    color: #D3D3D3;
    line-height: 1.6;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.page-gdpr__rights-list li strong {
    color: #E0B92B;
    display: block;
    margin-bottom: 5px;
}

.page-gdpr__cta-section {
    background-color: #1A2B40;
    padding: 80px 20px;
    text-align: center;
    color: #FFFFFF;
}

.page-gdpr__cta-title {
    font-size: 2.8em;
    color: #E0B92B;
    margin-bottom: 20px;
}

.page-gdpr__cta-text {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
    color: #D3D3D3;
}

.page-gdpr__cta-buttons .page-gdpr__btn {
    margin: 0 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-gdpr__hero-title {
        font-size: 2.8em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__content-grid {
        flex-direction: column;
    }
    .page-gdpr__cta-title {
        font-size: 2.2em;
    }
    .page-gdpr__cta-buttons {
        flex-direction: column;
        display: flex;
        align-items: center;
    }
    .page-gdpr__cta-buttons .page-gdpr__btn {
        margin: 10px 0;
        width: 80%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero-section {
        padding: 80px 20px;
    }
    .page-gdpr__hero-title {
        font-size: 2.2em;
    }
    .page-gdpr__hero-subtitle {
        font-size: 1.1em;
    }
    .page-gdpr__section {
        padding: 60px 0;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
        margin-bottom: 40px;
    }
    .page-gdpr__feature-grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__rights-list {
        grid-template-columns: 1fr;
    }
    .page-gdpr__cta-title {
        font-size: 1.8em;
    }
    .page-gdpr__cta-text {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-gdpr__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-gdpr__btn--secondary {
        margin-left: 0;
        margin-top: 10px;
    }
    .page-gdpr__hero-title {
        font-size: 1.8em;
    }
    .page-gdpr__section-title {
        font-size: 1.5em;
    }
    .page-gdpr__cta-title {
        font-size: 1.6em;
    }
    .page-gdpr__cta-buttons .page-gdpr__btn {
        width: 100%;
    }
}