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

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

.page-gdpr__hero {
    background: linear-gradient(135deg, #1A202C, #3A404C);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.page-gdpr__hero-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.page-gdpr__button {
    display: inline-block;
    background-color: #FFD700;
    color: #1A202C;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-gdpr__button:hover {
    background-color: #e5c100;
    transform: translateY(-2px);
}

.page-gdpr__button--secondary {
    background-color: #1A202C;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-gdpr__button--secondary:hover {
    background-color: #3A404C;
    color: #FFD700;
    border-color: #e5c100;
}

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

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

.page-gdpr__section-title {
    font-size: 2.2em;
    color: #1A202C;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-gdpr__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #FFD700;
    margin: 15px auto 0;
}

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

.page-gdpr__content-grid--reverse {
    flex-direction: row-reverse;
}

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

.page-gdpr__text-content p {
    margin-bottom: 15px;
    font-size: 1.05em;
}

.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.1);
}

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

.page-gdpr__principle-card {
    background-color: #FFFFFF;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-gdpr__principle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr__card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.1));
}

.page-gdpr__card-title {
    font-size: 1.4em;
    color: #1A202C;
    margin-bottom: 15px;
}

.page-gdpr__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
}

.page-gdpr__list li {
    margin-bottom: 10px;
}

.page-gdpr__security-list {
    list-style-type: decimal;
    margin-left: 25px;
    margin-bottom: 30px;
    font-size: 1.05em;
}

.page-gdpr__security-list li {
    margin-bottom: 10px;
}

.page-gdpr__full-width-image {
    width: 100%;
    height: auto;
    margin-top: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

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

.page-gdpr__cta-bottom {
    text-align: center;
    margin-top: 50px;
    padding: 30px;
    background-color: #1A202C;
    color: #FFFFFF;
    border-radius: 8px;
}

.page-gdpr__cta-bottom p {
    font-size: 1.2em;
    margin-bottom: 25px;
    color: #FFD700;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-gdpr__content-grid {
        flex-direction: column;
    }
    .page-gdpr__content-grid--reverse {
        flex-direction: column;
    }
    .page-gdpr__hero-title {
        font-size: 2.2em;
    }
    .page-gdpr__hero-description {
        font-size: 1em;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__principles-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero {
        padding: 60px 0;
    }
    .page-gdpr__hero-title {
        font-size: 1.8em;
    }
    .page-gdpr__section {
        padding: 40px 0;
    }
    .page-gdpr__section-title {
        font-size: 1.5em;
    }
    .page-gdpr__principle-card {
        padding: 20px;
    }
    .page-gdpr__card-title {
        font-size: 1.2em;
    }
    .page-gdpr__list, .page-gdpr__security-list {
        margin-left: 20px;
        font-size: 0.95em;
    }
    .page-gdpr__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-gdpr__cta-bottom p {
        font-size: 1em;
    }
}