/* style/gdpr.css */

/* Base styles for the GDPR page */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #F8F8F8; /* Light text on dark background */
    line-height: 1.6;
    background-color: #2A2E43; /* Main brand dark blue */
    padding-bottom: 50px;
}

.page-gdpr__highlight {
    color: #FFD700; /* Accent gold for highlights */
    font-weight: bold;
}

.page-gdpr__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #2A2E43 0%, #4a4f6b 100%); /* Dark gradient */
    padding: 80px 20px;
    gap: 40px;
}

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

.page-gdpr__title {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-gdpr__subtitle {
    font-size: 1.5em;
    color: #E0E0E0;
    margin-bottom: 30px;
}

.page-gdpr__cta-button {
    display: inline-block;
    background-color: #FFD700; /* Gold button */
    color: #2A2E43; /* Dark text on gold */
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid #FFD700;
}

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

.page-gdpr__cta-button--bottom {
    margin-top: 40px;
}

.page-gdpr__hero-image-container {
    max-width: 600px;
    width: 100%;
}

.page-gdpr__hero-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.page-gdpr__section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 20px;
    background-color: #3B405A; /* Slightly lighter dark blue for sections */
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    padding: 40px;
}

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

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

.page-gdpr__section ul {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-gdpr__section ul li {
    margin-bottom: 10px;
    font-size: 1.1em;
}

.page-gdpr__inline-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

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

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

.page-gdpr__right-item {
    background-color: #2A2E43; /* Dark blue for individual right items */
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

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

.page-gdpr__right-item h3 {
    color: #FFD700; /* Gold for right item titles */
    font-size: 1.4em;
    margin-top: 15px;
    margin-bottom: 10px;
}

.page-gdpr__right-item p {
    font-size: 1em;
    color: #C0C0C0;
}

.page-gdpr__icon {
    width: 60px;
    height: 60px;
    filter: brightness(1.2); /* Make icons stand out */
}

.page-gdpr__section-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-gdpr__contact-info {
    background-color: #2A2E43;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
    text-align: center;
}

.page-gdpr__contact-info p {
    margin: 10px 0;
    font-size: 1.1em;
    color: #E0E0E0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-gdpr__title {
        font-size: 3em;
    }

    .page-gdpr__subtitle {
        font-size: 1.3em;
    }

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

    .page-gdpr__hero {
        flex-direction: column;
        padding: 60px 20px;
    }
}

@media (max-width: 768px) {
    .page-gdpr__title {
        font-size: 2.5em;
    }

    .page-gdpr__subtitle {
        font-size: 1.1em;
    }

    .page-gdpr__section {
        margin: 40px auto;
        padding: 30px;
    }

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

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

    .page-gdpr__hero-image-container {
        order: -1; /* Move image above text on mobile */
    }

    .page-gdpr__hero-content {
        margin-top: 30px;
    }
}

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

    .page-gdpr__subtitle {
        font-size: 1em;
    }

    .page-gdpr__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-gdpr__section {
        padding: 20px;
    }

    .page-gdpr__section-title {
        font-size: 1.5em;
    }

    .page-gdpr__section p,
    .page-gdpr__section ul li {
        font-size: 0.95em;
    }
}