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

.page-gdpr__hero {
    background: linear-gradient(135deg, #0D47A1, #2a6dbf);
    color: #FFFFFF;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero-image {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 800px;
    opacity: 0.2;
    z-index: 0;
}

.page-gdpr__container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.page-gdpr__title {
    font-size: 2.8em;
    margin-bottom: 15px;
    color: #FFD700; /* Gold for emphasis */
    font-weight: bold;
}

.page-gdpr__subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
}

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

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

.page-gdpr__section-title {
    font-size: 2em;
    color: #0D47A1;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.page-gdpr__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #FFD700;
    margin: 10px auto 0;
    border-radius: 2px;
}

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

.page-gdpr__list li {
    background-color: #FFFFFF;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-left: 5px solid #0D47A1;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    border-radius: 4px;
    line-height: 1.8;
}

.page-gdpr__list li strong {
    color: #0D47A1;
}

.page-gdpr__image {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 40px auto 0;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.page-gdpr__link {
    color: #0D47A1;
    text-decoration: none;
    font-weight: bold;
}

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

.page-gdpr__btn {
    display: inline-block;
    background-color: #FFD700;
    color: #0D47A1; /* Dark blue text on gold button */
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 30px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
}

.page-gdpr__btn:hover {
    background-color: #e6c200; /* Slightly darker gold on hover */
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-gdpr__title {
        font-size: 2.2em;
    }
    .page-gdpr__subtitle {
        font-size: 1.1em;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__section {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .page-gdpr__title {
        font-size: 1.8em;
    }
    .page-gdpr__subtitle {
        font-size: 1em;
    }
    .page-gdpr__list li {
        padding: 12px 15px;
    }
    .page-gdpr__btn {
        padding: 10px 20px;
        font-size: 1em;
    }
}