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

.page-gdpr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-gdpr-hero {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
}

.page-gdpr-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #ffc107;
}

.page-gdpr-subtitle {
    font-size: 1.4em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-gdpr-btn-primary {
    background-color: #ffc107;
    color: #0056b3;
    border: 2px solid #ffc107;
}

.page-gdpr-btn-primary:hover {
    background-color: #e0a800;
    color: #003e92;
    transform: translateY(-3px);
}

.page-gdpr-btn-secondary {
    background-color: #007bff;
    color: #fff;
    border: 2px solid #007bff;
}

.page-gdpr-btn-secondary:hover {
    background-color: #0056b3;
    color: #fff;
    transform: translateY(-3px);
}

.page-gdpr-section {
    padding: 60px 0;
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-gdpr-section:nth-of-type(odd) {
    background-color: #f8f9fa;
}

.page-gdpr-section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-gdpr-section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background-color: #ffc107;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -10px;
    border-radius: 2px;
}

.page-gdpr-intro p {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #555;
}

.page-gdpr-content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-gdpr-text-block {
    flex: 1;
}

.page-gdpr-image-block {
    flex: 1;
    text-align: center;
}

.page-gdpr-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-gdpr-reverse {
    flex-direction: row-reverse;
}

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

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

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

.page-gdpr-card-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
}

.page-gdpr-card p {
    color: #666;
}

.page-gdpr-rights ul {
    list-style: none;
    padding-left: 0;
}

.page-gdpr-rights ul li {
    background-color: #e6f7ff;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #007bff;
    border-radius: 5px;
    font-size: 1.1em;
    color: #333;
}

.page-gdpr-rights ul li strong {
    color: #0056b3;
}

.page-gdpr-text-center {
    text-align: center;
}

.page-gdpr-contact-cta p {
    font-size: 1.1em;
    margin-bottom: 25px;
    color: #555;
}

.page-gdpr-small-text {
    font-size: 0.9em;
    margin-top: 20px;
    color: #777;
}

.page-gdpr-small-text a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr-small-text a:hover {
    text-decoration: underline;
    color: #0056b3;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-gdpr-content-wrapper {
        flex-direction: column;
    }

    .page-gdpr-reverse {
        flex-direction: column;
    }

    .page-gdpr-hero {
        padding: 60px 0;
    }

    .page-gdpr-title {
        font-size: 2.5em;
    }

    .page-gdpr-subtitle {
        font-size: 1.2em;
    }

    .page-gdpr-section-title {
        font-size: 2em;
    }

    .page-gdpr-card {
        padding: 25px;
    }
}

@media (max-width: 768px) {
    .page-gdpr-hero {
        padding: 40px 0;
    }

    .page-gdpr-title {
        font-size: 2em;
    }

    .page-gdpr-subtitle {
        font-size: 1em;
    }

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

    .page-gdpr-section {
        padding: 40px 0;
    }

    .page-gdpr-section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

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

    .page-gdpr-card {
        padding: 20px;
    }

    .page-gdpr-rights ul li {
        padding: 12px 15px;
        font-size: 1em;
    }
}