/* style/gdpr.css */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

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

.page-gdpr__hero {
    background: linear-gradient(135deg, #FFD700, #8B0000);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.page-gdpr__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f0f0f0;
}

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

.page-gdpr__btn:hover {
    background-color: #8B0000; /* Dark Red */
    color: #FFD700; /* Gold */
    transform: translateY(-3px);
    border-color: #8B0000;
}

.page-gdpr__btn--secondary {
    background-color: transparent;
    color: #8B0000; /* Dark Red */
    border-color: #8B0000;
}

.page-gdpr__btn--secondary:hover {
    background-color: #8B0000;
    color: #FFD700;
}

.page-gdpr__section {
    padding: 60px 0;
    background-color: #fff;
}

.page-gdpr__section--dark {
    background-color: #f8f8f8;
}

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #8B0000; /* Dark Red */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 10px;
}

.page-gdpr__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700; /* Gold */
    border-radius: 2px;
}

.page-gdpr__content-block {
    flex: 1;
    padding: 20px;
}

.page-gdpr__content-block p {
    margin-bottom: 15px;
    color: #555;
}

.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: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.page-gdpr__grid-title {
    font-size: 1.5em;
    color: #8B0000; /* Dark Red */
    margin-bottom: 15px;
}

.page-gdpr__grid-item p {
    color: #666;
}

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

.page-gdpr__list li {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #555;
}

.page-gdpr__list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700; /* Gold */
    font-weight: bold;
    font-size: 1.2em;
    top: -2px;
}

.page-gdpr__list--columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 30px;
}

.page-gdpr__flex {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-gdpr__flex-reverse {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap-reverse;
}

.page-gdpr__image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

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

.page-gdpr__center-content {
    text-align: center;
    max-width: 800px;
}

.page-gdpr__center-content p {
    font-size: 1.1em;
    color: #444;
    margin-bottom: 25px;
}

.page-gdpr .highlight {
    color: #8B0000;
    font-weight: bold;
}

.page-gdpr__hero .highlight {
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gdpr__hero-title {
        font-size: 2.5em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__flex, .page-gdpr__flex-reverse {
        flex-direction: column;
        text-align: center;
    }
    .page-gdpr__image-wrapper {
        order: -1; /* Move image above text on smaller screens for flex-reverse */
    }
    .page-gdpr__content-block {
        padding: 10px;
    }
    .page-gdpr__list--columns {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero {
        padding: 60px 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 {
        grid-template-columns: 1fr;
    }
    .page-gdpr__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

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