/* style/gdpr.css */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light grey for text on dark background */
    background-color: #1A1A2E; /* Main dark blue background */
    line-height: 1.6;
}

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

.page-gdpr__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1A1A2E 0%, #3a3a5e 100%); /* Gradient from main to slightly lighter dark blue */
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

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

.page-gdpr__hero h1 {
    font-size: 3.5em;
    color: #E94560; /* Accent color for main title */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-gdpr__hero p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #CCCCCC;
}

.page-gdpr__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    overflow: hidden;
}

.page-gdpr__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-gdpr__btn {
    display: inline-block;
    background-color: #E94560; /* Accent color for buttons */
    color: #FFFFFF;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.page-gdpr__btn:hover {
    background-color: #C23750; /* Darker accent on hover */
    transform: translateY(-2px);
}

.page-gdpr__section {
    padding: 60px 0;
    border-bottom: 1px solid #2B2B40; /* Slightly lighter border for sections */
}

.page-gdpr__section:last-of-type {
    border-bottom: none;
}

.page-gdpr__section h2 {
    font-size: 2.5em;
    color: #E94560;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-gdpr__section h3 {
    font-size: 1.8em;
    color: #F0F0F0;
    margin-top: 25px;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gdpr__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #CCCCCC;
}

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

.page-gdpr__section ul li {
    background-color: #2B2B40; /* Darker background for list items */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 1.05em;
    color: #E0E0E0;
}

.page-gdpr__section ul li strong {
    color: #E94560;
    margin-right: 10px;
}

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

.page-gdpr__principle-item {
    background-color: #2B2B40;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.page-gdpr__principle-item img {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
}

.page-gdpr__principle-item h3 {
    color: #E94560;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.page-gdpr__principle-item p {
    font-size: 1em;
    color: #CCCCCC;
}

.page-gdpr__image-wrapper {
    text-align: center;
    margin: 40px 0;
}

.page-gdpr__image-wrapper img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__link {
    color: #E94560;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.page-gdpr__contact-cta {
    background-color: #1A1A2E;
    padding: 80px 0;
    text-align: center;
}

.page-gdpr__contact-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: flex-start;
    gap: 40px;
}

.page-gdpr__contact-info, .page-gdpr__cta {
    flex: 1;
    min-width: 300px;
    background-color: #2B2B40;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__contact-info h2, .page-gdpr__cta h2 {
    font-size: 2em;
    color: #E94560;
    margin-bottom: 20px;
}

.page-gdpr__contact-info p, .page-gdpr__cta p {
    font-size: 1.1em;
    color: #CCCCCC;
    margin-bottom: 25px;
}

.page-gdpr__btn--primary {
    background-color: #E94560;
    margin-right: 15px;
}

.page-gdpr__btn--secondary {
    background-color: #4A4A6A; /* A complementary dark grey-blue */
    color: #FFFFFF;
}

.page-gdpr__btn--secondary:hover {
    background-color: #5F5F7F;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-gdpr__hero h1 {
        font-size: 3em;
    }
    .page-gdpr__section h2 {
        font-size: 2em;
    }
    .page-gdpr__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero {
        padding: 60px 15px;
    }
    .page-gdpr__hero h1 {
        font-size: 2.5em;
    }
    .page-gdpr__hero p {
        font-size: 1em;
    }
    .page-gdpr__section {
        padding: 40px 0;
    }
    .page-gdpr__section h2 {
        font-size: 1.8em;
    }
    .page-gdpr__section h3 {
        font-size: 1.4em;
    }
    .page-gdpr__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gdpr__contact-flex {
        flex-direction: column;
        align-items: center;
    }
    .page-gdpr__contact-info, .page-gdpr__cta {
        width: 100%;
        max-width: 450px;
    }
    .page-gdpr__btn--primary, .page-gdpr__btn--secondary {
        margin-right: 0;
        margin-bottom: 15px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero h1 {
        font-size: 2em;
    }
    .page-gdpr__section h2 {
        font-size: 1.5em;
    }
    .page-gdpr__grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__principle-item {
        padding: 20px;
    }
    .page-gdpr__section ul li {
        padding: 10px 15px;
        font-size: 0.95em;
    }
}