/* style/gdpr.css */

.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* Light text color for dark backgrounds */
    background-color: #1A202C; /* Main dark background */
    line-height: 1.6;
    scroll-behavior: smooth;
}

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

.page-gdpr__hero {
    background: linear-gradient(135deg, #1A202C 0%, #3a414e 100%); /* Slightly lighter gradient for hero */
    padding: 80px 0;
    text-align: center;
}

.page-gdpr__title {
    font-size: 2.8em;
    color: #E53E3E; /* Accent color for main title */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-gdpr__subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: rgba(255, 255, 255, 0.9);
}

.page-gdpr__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    white-space: nowrap;
}

.page-gdpr__btn--primary {
    background-color: #E53E3E; /* Accent color for primary button */
    color: #FFFFFF;
    border: none;
}

.page-gdpr__btn--primary:hover {
    background-color: #d13030;
    transform: translateY(-2px);
}

.page-gdpr__btn--secondary {
    background-color: #3a414e; /* Darker variant for secondary button */
    color: #FFFFFF;
    border: 1px solid #E53E3E;
}

.page-gdpr__btn--secondary:hover {
    background-color: #E53E3E;
    transform: translateY(-2px);
}

.page-gdpr__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Subtle separator */
}

.page-gdpr__section:last-of-type {
    border-bottom: none;
}

.page-gdpr__heading {
    font-size: 2.2em;
    color: #E53E3E; /* Accent color for section headings */
    text-align: center;
    margin-bottom: 50px;
    font-weight: bold;
}

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

.page-gdpr__grid-item {
    background-color: #2A303C; /* Slightly lighter dark background for items */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-gdpr__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: invert(100%) saturate(1000%) hue-rotate(330deg) brightness(1.2); /* Make icon red-ish */
}

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

.page-gdpr__grid-item p {
    color: rgba(255, 255, 255, 0.8);
    flex-grow: 1;
}

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

.page-gdpr__list li {
    background-color: #2A303C;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #E53E3E;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.page-gdpr__list li strong {
    color: #E53E3E;
}

.page-gdpr__section--contact {
    text-align: center;
}

.page-gdpr__contact-info {
    margin-top: 30px;
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.9);
}

.page-gdpr__contact-info p {
    margin-bottom: 10px;
}

.page-gdpr__link {
    color: #E53E3E;
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr__link:hover {
    text-decoration: underline;
}

.page-gdpr__image--large {
    max-width: 80%;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-gdpr__title {
        font-size: 2.2em;
    }
    .page-gdpr__heading {
        font-size: 2em;
    }
    .page-gdpr__image--large {
        max-width: 90%;
    }
}

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

    .page-gdpr__heading {
        font-size: 1.6em;
    }

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

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

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

    .page-gdpr__section {
        padding: 40px 0;
    }

    .page-gdpr__image--large {
        max-width: 100%;
    }
}

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

    .page-gdpr__heading {
        font-size: 1.4em;
    }

    .page-gdpr__hero {
        padding: 50px 0;
    }

    .page-gdpr__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-gdpr__list li {
        padding: 15px;
        font-size: 0.95em;
    }
    .page-gdpr__contact-info {
        font-size: 1em;
    }
}