.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #f8f9fa; /* Light text for dark background */
    background-color: #1a1a2e; /* Dark background */
    line-height: 1.6;
}

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

.page-gdpr__hero {
    background: linear-gradient(135deg, #007BFF, #0056b3); /* Darker blue gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

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

.page-gdpr__hero-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-gdpr__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-gdpr__hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.page-gdpr__section-title {
    font-size: 2.2em;
    color: #FFC107; /* Auxiliary color for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-gdpr__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #007BFF;
    border-radius: 2px;
}

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

.page-gdpr__section strong {
    color: #FFC107;
}

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

.page-gdpr__data-item {
    background-color: #2a2a44; /* Slightly lighter dark background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-gdpr__data-item h3 {
    font-size: 1.5em;
    color: #007BFF;
    margin-bottom: 15px;
}

.page-gdpr__data-item p {
    color: #cccccc;
    font-size: 1em;
}

.page-gdpr__data-item ul {
    list-style-type: none;
    padding: 0;
    text-align: left;
    margin-top: 15px;
}

.page-gdpr__data-item ul li {
    margin-bottom: 10px;
    color: #cccccc;
    position: relative;
    padding-left: 25px;
}

.page-gdpr__data-item ul li::before {
    content: '✓';
    color: #FFC107;
    position: absolute;
    left: 0;
    top: 0;
}

.page-gdpr__data-item img {
    max-width: 100%;
    height: 150px;
    object-fit: contain;
    margin-top: 20px;
    border-radius: 5px;
}

.page-gdpr__rights-list {
    list-style-type: none;
    padding: 0;
    max-width: 800px;
    margin: 30px auto;
}

.page-gdpr__rights-list li {
    background-color: #2a2a44;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    font-size: 1.1em;
    color: #e0e0e0;
}

.page-gdpr__rights-list li strong {
    color: #007BFF;
}

.page-gdpr__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1em;
    margin: 10px;
}

.page-gdpr__btn--primary {
    background-color: #FFC107; /* Auxiliary color */
    color: #1a1a2e; /* Dark text for light background */
}

.page-gdpr__btn--primary:hover {
    background-color: #e0a800;
    transform: translateY(-2px);
}

.page-gdpr__btn--secondary {
    background-color: #007BFF; /* Main color */
    color: #ffffff;
    border: 1px solid #007BFF;
}

.page-gdpr__btn--secondary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-2px);
}

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

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

.page-gdpr__cta-buttons {
    text-align: center;
    margin-top: 40px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr__hero-title {
        font-size: 2em;
    }
    .page-gdpr__hero-subtitle {
        font-size: 1em;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__data-grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__data-item {
        padding: 20px;
    }
    .page-gdpr__rights-list li {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero {
        padding: 50px 0;
    }
    .page-gdpr__hero-title {
        font-size: 1.6em;
    }
    .page-gdpr__hero-subtitle {
        font-size: 0.9em;
    }
    .page-gdpr__section {
        padding: 40px 0;
    }
    .page-gdpr__section-title {
        font-size: 1.5em;
    }
    .page-gdpr__btn {
        padding: 10px 20px;
        font-size: 1em;
        margin: 5px;
    }
    .page-gdpr__rights-list li {
        font-size: 1em;
    }
}