/* style/gdpr.css */

:root {
    --page-gdpr-primary-color: #0A192F;
    --page-gdpr-accent-color: #E0B400;
    --page-gdpr-text-light: #FFFFFF;
    --page-gdpr-text-dark: #0A192F;
    --page-gdpr-background-light: #F0F2F5;
    --page-gdpr-grey-text: #CCCCCC;
}

.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--page-gdpr-text-dark);
    background-color: var(--page-gdpr-background-light);
}

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

.page-gdpr__hero {
    background: linear-gradient(135deg, var(--page-gdpr-primary-color) 0%, #1a345e 100%);
    padding: 100px 0;
    color: var(--page-gdpr-text-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: var(--page-gdpr-accent-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-gdpr__hero-description {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: var(--page-gdpr-grey-text);
}

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

.page-gdpr__btn--primary {
    background-color: var(--page-gdpr-accent-color);
    color: var(--page-gdpr-primary-color);
}

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

.page-gdpr__btn--secondary {
    background-color: var(--page-gdpr-primary-color);
    color: var(--page-gdpr-accent-color);
    border: 2px solid var(--page-gdpr-accent-color);
}

.page-gdpr__btn--secondary:hover {
    background-color: var(--page-gdpr-accent-color);
    color: var(--page-gdpr-primary-color);
    transform: translateY(-3px);
}

.page-gdpr__section {
    padding: 60px 0;
    text-align: center;
}

.page-gdpr__section:nth-of-type(even) {
    background-color: var(--page-gdpr-primary-color);
    color: var(--page-gdpr-text-light);
}

.page-gdpr__section:nth-of-type(even) .page-gdpr__section-title {
    color: var(--page-gdpr-accent-color);
}

.page-gdpr__section:nth-of-type(even) .page-gdpr__link {
    color: var(--page-gdpr-accent-color);
}

.page-gdpr__section:nth-of-type(even) .page-gdpr__link:hover {
    color: #f7d247;
}

.page-gdpr__section-title {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: var(--page-gdpr-primary-color);
    font-weight: bold;
}

.page-gdpr__section-intro {
    font-size: 1.1em;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #555;
}

.page-gdpr__section:nth-of-type(even) .page-gdpr__section-intro {
    color: var(--page-gdpr-grey-text);
}

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

.page-gdpr__grid-item {
    background-color: var(--page-gdpr-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
    color: var(--page-gdpr-primary-color);
}

.page-gdpr__section:nth-of-type(even) .page-gdpr__grid-item {
    background-color: #1a345e; /* Slightly lighter dark blue */
    color: var(--page-gdpr-text-light);
}

.page-gdpr__grid-item:hover {
    transform: translateY(-10px);
}

.page-gdpr__grid-item h3 {
    font-size: 1.5em;
    margin-top: 15px;
    margin-bottom: 10px;
    color: var(--page-gdpr-accent-color);
}

.page-gdpr__grid-item p {
    font-size: 1em;
    color: #666;
}

.page-gdpr__section:nth-of-type(even) .page-gdpr__grid-item p {
    color: var(--page-gdpr-grey-text);
}

.page-gdpr__icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%); /* White for dark bg */
}

.page-gdpr__section:nth-of-type(odd) .page-gdpr__grid-item .page-gdpr__icon {
    filter: none; /* Original color for light bg */
}

.page-gdpr__full-width-img {
    max-width: 100%;
    height: auto;
    margin: 40px auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-gdpr__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__list li {
    background-color: var(--page-gdpr-text-light);
    margin-bottom: 15px;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    font-size: 1.1em;
    color: var(--page-gdpr-primary-color);
}

.page-gdpr__section:nth-of-type(even) .page-gdpr__list li {
    background-color: #1a345e;
    color: var(--page-gdpr-text-light);
}

.page-gdpr__list li::before {
    content: '✓';
    color: var(--page-gdpr-accent-color);
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.4em;
}

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

.page-gdpr__right-item {
    background-color: var(--page-gdpr-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--page-gdpr-primary-color);
}

.page-gdpr__right-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-gdpr__section:nth-of-type(even) .page-gdpr__right-item {
    background-color: #1a345e;
    color: var(--page-gdpr-text-light);
}

.page-gdpr__right-item h4 {
    font-size: 1.3em;
    margin-top: 15px;
    margin-bottom: 10px;
    color: var(--page-gdpr-accent-color);
}

.page-gdpr__right-item p {
    font-size: 0.95em;
    color: #666;
}

.page-gdpr__section:nth-of-type(even) .page-gdpr__right-item p {
    color: var(--page-gdpr-grey-text);
}

.page-gdpr__icon--small {
    width: 60px;
    height: 60px;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(288deg) brightness(102%) contrast(102%); /* White for dark bg */
}

.page-gdpr__section:nth-of-type(odd) .page-gdpr__right-item .page-gdpr__icon--small {
    filter: none; /* Original color for light bg */
}

.page-gdpr__cta-text {
    margin-top: 40px;
    font-size: 1.15em;
    color: #333;
}

.page-gdpr__section:nth-of-type(even) .page-gdpr__cta-text {
    color: var(--page-gdpr-grey-text);
}

.page-gdpr__link {
    color: var(--page-gdpr-accent-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

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

.page-gdpr__contact-info {
    background-color: var(--page-gdpr-text-light);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 40px auto;
    text-align: left;
    color: var(--page-gdpr-primary-color);
}

.page-gdpr__section:nth-of-type(even) .page-gdpr__contact-info {
    background-color: #1a345e;
    color: var(--page-gdpr-text-light);
}

.page-gdpr__contact-info p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.page-gdpr__contact-info strong {
    color: var(--page-gdpr-accent-color);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-gdpr__hero-title {
        font-size: 2.5em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__rights-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero {
        padding: 80px 0;
    }
    .page-gdpr__hero-title {
        font-size: 2em;
    }
    .page-gdpr__hero-description {
        font-size: 1em;
    }
    .page-gdpr__section {
        padding: 40px 0;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__grid,
    .page-gdpr__rights-grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__icon {
        width: 60px;
        height: 60px;
    }
    .page-gdpr__icon--small {
        width: 40px;
        height: 40px;
    }
    .page-gdpr__list li {
        font-size: 1em;
        padding: 10px 15px;
    }
    .page-gdpr__list li::before {
        font-size: 1.2em;
        margin-right: 10px;
    }
    .page-gdpr__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gdpr__contact-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-title {
        font-size: 1.8em;
    }
    .page-gdpr__section-title {
        font-size: 1.6em;
    }
    .page-gdpr__hero-description {
        font-size: 0.9em;
    }
}