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

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

.page-gdpr-hero {
    background: linear-gradient(135deg, #0A192F, #1A304C); /* Subtle gradient for hero */
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr-hero-image {
    max-width: 80%;
    height: auto;
    margin-top: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr-title {
    font-size: 3.2em;
    color: #FFD700; /* Gold accent for main title */
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-gdpr-subtitle {
    font-size: 1.3em;
    color: #B0C4DE; /* Lighter blue for subtitle */
    max-width: 800px;
    margin: 0 auto 30px;
}

.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--alt-bg {
    background-color: #1A2B42; /* Slightly lighter dark blue for alternating sections */
}

.page-gdpr-section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold accent for section titles */
    margin-bottom: 30px;
    text-align: center;
}

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

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

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

.page-gdpr-list li {
    background-color: #1A304C; /* Darker blue for list items */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: flex-start;
    color: #E0E0E0;
}

.page-gdpr-list li::before {
    content: '✔️'; /* Checkmark icon */
    margin-right: 15px;
    font-size: 1.2em;
    color: #FFD700; /* Gold checkmark */
    line-height: 1;
}

.page-gdpr-link {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.page-gdpr-image-inline {
    display: block;
    max-width: 600px;
    height: auto;
    margin: 40px auto 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr-contact-section {
    background-color: #0A192F;
    text-align: center;
    padding-bottom: 80px;
}

.page-gdpr-text-center {
    text-align: center;
}

.page-gdpr-btn {
    display: inline-block;
    background-color: #FFD700; /* Gold button background */
    color: #0A192F; /* Dark blue text on gold button */
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.2em;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-gdpr-btn:hover {
    background-color: #E0B800; /* Slightly darker gold on hover */
    color: #000;
    transform: translateY(-3px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr-title {
        font-size: 2.5em;
    }

    .page-gdpr-subtitle {
        font-size: 1.1em;
    }

    .page-gdpr-section-title {
        font-size: 2em;
    }

    .page-gdpr-list li {
        padding: 10px 15px;
        font-size: 0.95em;
    }

    .page-gdpr-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gdpr-hero-image, .page-gdpr-image-inline {
        max-width: 95%;
    }
}

@media (max-width: 480px) {
    .page-gdpr-title {
        font-size: 2em;
    }

    .page-gdpr-subtitle {
        font-size: 1em;
    }

    .page-gdpr-section-title {
        font-size: 1.8em;
    }

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

    .page-gdpr-list li {
        font-size: 0.9em;
    }

    .page-gdpr-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}