/* style/gdpr.css */

/* Base styles for the GDPR page */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light text for dark background */
    background-color: #0A192F; /* Main background color */
    line-height: 1.6;
}

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

/* Hero Section */
.page-gdpr-hero {
    position: relative;
    background: linear-gradient(135deg, #0A192F 0%, #1a3a5e 100%); /* Gradient for depth */
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
    color: #f0f0f0;
}

.page-gdpr-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15; /* Subtle background image */
    z-index: 0;
}

.page-gdpr-hero .page-gdpr-container {
    position: relative;
    z-index: 1;
}

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

.page-gdpr-subtitle {
    font-size: 1.3em;
    color: #e0e0e0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

/* General Section Styling */
.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;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-gdpr-text {
    font-size: 1.1em;
    color: #c0c0c0;
    margin-bottom: 20px;
    text-align: justify;
}

.page-gdpr-text a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr-text a:hover {
    text-decoration: underline;
}

/* Rights Section Specifics */
.page-gdpr-rights {
    background-color: #1a2a40; /* Slightly lighter dark blue */
}

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

.page-gdpr-card {
    background-color: #0A192F;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

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

.page-gdpr-card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-gdpr-card-text {
    color: #a0a0a0;
    font-size: 0.95em;
}

.page-gdpr-image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto 0 auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Collection & Security Sections */
.page-gdpr-collection,
.page-gdpr-security,
.page-gdpr-responsibility {
    background-color: #0A192F;
}

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

.page-gdpr-list li {
    background-color: #1a2a40;
    margin-bottom: 15px;
    padding: 20px 25px;
    border-radius: 5px;
    display: flex;
    align-items: flex-start;
    color: #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-gdpr-list li strong {
    color: #FFD700;
    margin-right: 10px;
    flex-shrink: 0;
}

.page-gdpr-list li::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2em;
}

/* Contact Section */
.page-gdpr-contact {
    background-color: #1a2a40;
    text-align: center;
}

.page-gdpr-btn-contact {
    margin-top: 30px;
}

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

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

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

    .page-gdpr-grid {
        grid-template-columns: 1fr;
    }

    .page-gdpr-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-gdpr-list li strong {
        margin-bottom: 5px;
    }
}

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

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

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

    .page-gdpr-btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}