/* style/gdpr.css */

/* General styles for the GDPR page */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #E0E0E0; /* Light text for dark background */
    background-color: #1A202C; /* Main dark background */
}

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

.page-gdpr__hero {
    background-color: #1A202C;
    padding: 80px 0;
    text-align: center;
    color: #FFFFFF;
}

.page-gdpr__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFD700; /* Accent color for title */
    font-weight: bold;
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 30px;
}

.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;
    font-size: 1em;
}

.page-gdpr__btn--primary {
    background-color: #FFD700; /* Gold background */
    color: #1A202C; /* Dark text on gold */
    border: 2px solid #FFD700;
}

.page-gdpr__btn--primary:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    color: #000000;
}

.page-gdpr__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-gdpr__btn--secondary:hover {
    background-color: #FFD700;
    color: #1A202C;
}

.page-gdpr__btn--large {
    padding: 15px 35px;
    font-size: 1.2em;
}

.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.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-gdpr__content-grid {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 30px;
}

.page-gdpr__content-grid:nth-child(even) {
    flex-direction: row-reverse;
}

.page-gdpr__text-content {
    flex: 1;
}

.page-gdpr__image-wrapper {
    flex: 1;
    text-align: center;
}

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

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

.page-gdpr__list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.page-gdpr__list li {
    background-color: #2a3340; /* Slightly lighter dark background for list items */
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: #FFFFFF;
}

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

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

.page-gdpr__right-item {
    background-color: #2a3340;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-gdpr__right-item h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-bottom: 15px;
}

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

.page-gdpr__cta-text {
    text-align: center;
    margin-top: 40px;
    font-size: 1.2em;
    color: #FFD700;
}

.page-gdpr__contact p {
    text-align: center;
    font-size: 1.1em;
}

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

.page-gdpr__contact-link:hover {
    text-decoration: underline;
}

.page-gdpr__explore {
    text-align: center;
    background-color: #1A202C; /* Ensure dark background for contrast */
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-gdpr__explore-content {
    background-color: #2a3340; /* Slightly lighter dark background for this section */
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-gdpr__hero-title {
        font-size: 2.8em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__content-grid {
        flex-direction: column;
    }
    .page-gdpr__content-grid:nth-child(even) {
        flex-direction: column; /* Reset order for smaller screens */
    }
    .page-gdpr__rights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero {
        padding: 60px 0;
    }
    .page-gdpr__hero-title {
        font-size: 2.2em;
    }
    .page-gdpr__hero-description {
        font-size: 1em;
    }
    .page-gdpr__section {
        padding: 40px 0;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-gdpr__list li,
    .page-gdpr__section p {
        font-size: 1em;
    }
    .page-gdpr__right-item h3 {
        font-size: 1.3em;
    }
    .page-gdpr__right-item p {
        font-size: 0.95em;
    }
    .page-gdpr__btn--large {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gdpr__explore-content {
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-title {
        font-size: 1.8em;
    }
    .page-gdpr__section-title {
        font-size: 1.5em;
    }
    .page-gdpr__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-gdpr__list li {
        padding: 10px 15px;
    }
}