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

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

.page-gdpr-hero {
    background-color: #1A202C;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 32, 44, 0.9), rgba(255, 215, 0, 0.2));
    z-index: 0;
}

.page-gdpr-hero .page-gdpr-container {
    position: relative;
    z-index: 1;
}

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

.page-gdpr-hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E2E8F0;
}

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

.page-gdpr-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-gdpr-section {
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}

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

.page-gdpr-heading {
    font-size: 2.5em;
    color: #1A202C;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-gdpr-paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #4A5568;
    text-align: justify;
}

.page-gdpr-content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .page-gdpr-content-grid {
        grid-template-columns: 1fr 1fr;
    }
    .page-gdpr-text-content {
        order: 1;
    }
    .page-gdpr-image-left {
        order: 2;
    }
    .page-gdpr-image-right {
        order: 1;
    }
}

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

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

.page-gdpr-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    padding: 30px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-gdpr-card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin-bottom: 15px;
    border-bottom: 2px solid #E2E8F0;
    padding-bottom: 10px;
}

.page-gdpr-card-text {
    font-size: 1em;
    color: #4A5568;
}

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

.page-gdpr-list li {
    background-color: #FFFFFF;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    font-size: 1.05em;
    color: #4A5568;
}

.page-gdpr-list li strong {
    color: #1A202C;
}

.page-gdpr-contact-cta {
    background-color: #1A202C;
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
}

.page-gdpr-heading-light {
    color: #FFD700;
}

.page-gdpr-paragraph-light {
    color: #E2E8F0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-gdpr-button-secondary:hover {
    background-color: #e6c200;
    color: #1A202C;
    border-color: #e6c200;
}

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

.page-gdpr-flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .page-gdpr-hero-title {
        font-size: 2.5em;
    }
    .page-gdpr-hero-subtitle {
        font-size: 1em;
    }
    .page-gdpr-heading {
        font-size: 2em;
    }
    .page-gdpr-section {
        padding: 40px 0;
    }
    .page-gdpr-card-grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr-image-left, .page-gdpr-image-right {
        order: unset; /* Reset order for mobile */
    }
}

@media (max-width: 480px) {
    .page-gdpr-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-gdpr-list li {
        padding: 10px 15px;
        font-size: 0.95em;
    }
}