.page-gdpr {
    font-family: Arial, sans-serif;
    color: #f5e6d0; /* Light text for dark background */
    background-color: #0A192F; /* Primary 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, #0A192F, #2A3E5A); /* Dark gradient */
    padding: 80px 0;
    text-align: center;
    color: #f5e6d0;
}

.page-gdpr-title {
    font-size: 3em;
    color: #FFD700; /* Secondary color for emphasis */
    margin-bottom: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr-subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.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;
    cursor: pointer;
}

.page-gdpr-btn-primary {
    background-color: #FFD700; /* Secondary color for CTA */
    color: #0A192F; /* Dark text for bright button */
}

.page-gdpr-btn-primary:hover {
    background-color: #e6c200;
}

.page-gdpr-btn-secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

.page-gdpr-btn-secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
}

.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-heading {
    font-size: 2.5em;
    color: #FFD700; /* Secondary color for headings */
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-gdpr-subheading {
    font-size: 1.5em;
    color: #f5e6d0;
    margin-bottom: 15px;
}

.page-gdpr-introduction p, .page-gdpr-principles p, .page-gdpr-rights p, .page-gdpr-contact p, .page-gdpr-compliance-statement p {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
}

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

.page-gdpr-grid-item {
    background-color: rgba(255, 255, 255, 0.05); /* Slightly lighter background for items */
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.page-gdpr-list {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}

.page-gdpr-list li {
    background-color: rgba(255, 255, 255, 0.03);
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 4px solid #FFD700; /* Secondary color highlight */
    border-radius: 4px;
    font-size: 1.1em;
}

.page-gdpr-list li strong {
    color: #FFD700;
}

.page-gdpr-link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-gdpr-link:hover {
    color: #e6c200;
    text-decoration: underline;
}

.page-gdpr-image-wrapper {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr-title {
        font-size: 2.2em;
    }
    .page-gdpr-heading {
        font-size: 2em;
    }
    .page-gdpr-subtitle, .page-gdpr-introduction p, .page-gdpr-principles p, .page-gdpr-rights p, .page-gdpr-contact p, .page-gdpr-compliance-statement p {
        font-size: 1em;
    }
    .page-gdpr-grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr-section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-gdpr-title {
        font-size: 1.8em;
    }
    .page-gdpr-heading {
        font-size: 1.6em;
    }
    .page-gdpr-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-gdpr-list li {
        font-size: 0.95em;
        padding: 12px 15px;
    }
}