/* 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 20px;
}

.page-gdpr__hero {
    background: linear-gradient(135deg, #2D3E50 0%, #4a5d70 100%); /* Dark blue gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-gdpr__hero-subtitle {
    font-size: 1.5em;
    margin-bottom: 30px;
    font-weight: 300;
}

.page-gdpr__hero-image {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: auto;
    opacity: 0.1;
    z-index: 0;
    pointer-events: none;
}

.page-gdpr__section {
    padding: 60px 0;
    background-color: #ffffff;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
}

.page-gdpr__section:nth-of-type(even) {
    background-color: #fefefe;
}

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #2D3E50; /* Dark blue */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-gdpr__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #F39C12; /* Orange accent */
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-gdpr__introduction p,
.page-gdpr__rights p,
.page-gdpr__data-processing p,
.page-gdpr__contact p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.page-gdpr__strong {
    font-weight: bold;
    color: #2D3E50;
}

.page-gdpr__highlight {
    color: #F39C12; /* Orange accent */
}

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

.page-gdpr__list li {
    background-color: #e8f0f6;
    margin-bottom: 10px;
    padding: 15px 25px;
    border-left: 5px solid #F39C12;
    border-radius: 4px;
    font-size: 1.05em;
    color: #444;
}

.page-gdpr__list li strong {
    color: #2D3E50;
}

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

.page-gdpr__card {
    background-color: #fefefe;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.page-gdpr__card-title {
    font-size: 1.5em;
    color: #2D3E50; /* Dark blue */
    margin-bottom: 15px;
}

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

.page-gdpr__button {
    display: inline-block;
    background-color: #F39C12; /* Orange */
    color: #ffffff;
    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: #e08e0b; /* Darker orange */
    transform: translateY(-2px);
}

.page-gdpr__hero-button {
    margin-top: 20px;
    font-size: 1.1em;
}

.page-gdpr__contact-button {
    margin-top: 30px;
    font-size: 1.1em;
}

.page-gdpr__link {
    color: #F39C12; /* Orange */
    text-decoration: none;
    font-weight: bold;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .page-gdpr__hero-title {
        font-size: 2.5em;
    }

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

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

    .page-gdpr__introduction p,
    .page-gdpr__rights p,
    .page-gdpr__data-processing p,
    .page-gdpr__contact p {
        font-size: 1em;
    }

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

    .page-gdpr__card {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero {
        padding: 60px 0;
    }

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

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

    .page-gdpr__section {
        padding: 40px 0;
    }

    .page-gdpr__section-title {
        font-size: 1.8em;
    }

    .page-gdpr__list li {
        padding: 12px 20px;
    }
}