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

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

.page-gdpr__hero {
    background: linear-gradient(135deg, #FFD700 0%, #DC143C 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
    animation: page-gdpr__pulse 15s infinite ease-in-out;
    opacity: 0.7;
}

@keyframes page-gdpr__pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(0.8); opacity: 0.5; }
}

.page-gdpr__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
    z-index: 1;
}

.page-gdpr__subtitle {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
    position: relative;
    z-index: 1;
}

.page-gdpr__brand {
    font-weight: bold;
    color: #FFD700; /* Gold for brand name */
}

.page-gdpr__section {
    padding: 60px 0;
    background-color: #fff;
    border-bottom: 1px solid #eee;
}

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

.page-gdpr__heading {
    font-size: 2.2em;
    color: #DC143C; /* Dark Red for main headings */
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    padding-bottom: 10px;
}

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

.page-gdpr__content-block {
    max-width: 900px;
    margin: 0 auto;
    font-size: 1.05em;
    color: #444;
}

.page-gdpr__content-block p {
    margin-bottom: 15px;
    text-align: justify;
}

.page-gdpr__sub-heading {
    font-size: 1.6em;
    color: #333;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: bold;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
}

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

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

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

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

.page-gdpr__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    margin: 10px;
    cursor: pointer;
    border: none;
}

.page-gdpr__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #333; /* Dark text for contrast */
    box-shadow: 0 5px 15px rgba(255,215,0,0.4);
}

.page-gdpr__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255,215,0,0.6);
}

.page-gdpr__btn--secondary {
    background-color: #DC143C; /* Dark Red */
    color: #fff;
    box-shadow: 0 5px 15px rgba(220,20,60,0.4);
}

.page-gdpr__btn--secondary:hover {
    background-color: #c41235;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220,20,60,0.6);
}

.page-gdpr__cta-section {
    background: linear-gradient(45deg, #DC143C, #FFD700);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.page-gdpr__cta-heading {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.page-gdpr__cta-text {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    color: rgba(255,255,255,0.9);
}

.page-gdpr__cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.page-gdpr a {
    color: #DC143C;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-gdpr__title {
        font-size: 2em;
    }
    .page-gdpr__subtitle {
        font-size: 1em;
    }
    .page-gdpr__heading {
        font-size: 1.8em;
    }
    .page-gdpr__sub-heading {
        font-size: 1.4em;
    }
    .page-gdpr__section {
        padding: 40px 0;
    }
    .page-gdpr__cta-heading {
        font-size: 2em;
    }
    .page-gdpr__cta-text {
        font-size: 1em;
    }
    .page-gdpr__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-gdpr__title {
        font-size: 1.8em;
    }
    .page-gdpr__heading {
        font-size: 1.6em;
    }
    .page-gdpr__sub-heading {
        font-size: 1.2em;
    }
    .page-gdpr__btn {
        width: 100%;
        margin: 10px 0;
    }
    .page-gdpr__cta-buttons {
        flex-direction: column;
    }
}