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

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

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

.page-gdpr__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFD700; /* Gold for emphasis */
}

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

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

.page-gdpr__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #0A2463; /* Dark blue text on gold */
}

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

.page-gdpr__btn--secondary {
    background-color: #0A2463; /* Dark blue */
    color: #FFD700; /* Gold text on dark blue */
    border: 2px solid #FFD700;
}

.page-gdpr__btn--secondary:hover {
    background-color: #1a3a7c; /* Slightly lighter dark blue */
    transform: translateY(-2px);
}

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

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

.page-gdpr__section--intro {
    background-color: #ffffff;
    text-align: center;
}

.page-gdpr__section-title {
    font-size: 2.5em;
    color: #0A2463; /* Dark blue */
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
}

.page-gdpr__section--rights {
    background-color: #f0f4f7;
}

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

.page-gdpr__card {
    background-color: #ffffff;
    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: #0A2463;
    margin-bottom: 15px;
}

.page-gdpr__section--data {
    background-color: #ffffff;
}

.page-gdpr__content-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.page-gdpr__text-content {
    flex: 1;
}

.page-gdpr__text-content h3 {
    font-size: 1.8em;
    color: #0A2463;
    margin-bottom: 15px;
}

.page-gdpr__text-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

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

.page-gdpr__image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-gdpr__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-gdpr__section--security {
    background-color: #f0f4f7;
}

.page-gdpr__cta-box {
    background-color: #0A2463;
    color: #ffffff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    margin-top: 50px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-gdpr__cta-box h3 {
    font-size: 2em;
    color: #FFD700; /* Gold */
    margin-bottom: 20px;
}

.page-gdpr__cta-box p {
    font-size: 1.2em;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__section--contact {
    background-color: #ffffff;
    text-align: center;
}

.page-gdpr__contact-link {
    color: #0A2463;
    text-decoration: none;
    font-weight: bold;
}

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

.page-gdpr__floating-ad {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #0A2463;
    color: #ffffff;
    padding: 15px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 1000;
    animation: page-gdpr__float-in 0.5s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes page-gdpr__float-in {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.page-gdpr__floating-ad-text {
    margin: 0;
    font-size: 1.1em;
    color: #ffffff;
}

.page-gdpr__floating-ad-btn {
    background-color: #FFD700;
    color: #0A2463;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-gdpr__floating-ad-btn:hover {
    background-color: #e6c200;
}

@media (max-width: 992px) {
    .page-gdpr__hero-title {
        font-size: 2.8em;
    }
    .page-gdpr__hero-subtitle {
        font-size: 1.2em;
    }
    .page-gdpr__section-title {
        font-size: 2em;
    }
    .page-gdpr__content-flex {
        flex-direction: column;
        align-items: center;
    }
    .page-gdpr__image-wrapper {
        margin-top: 30px;
    }
    .page-gdpr__floating-ad {
        flex-direction: column;
        text-align: center;
        right: 10px;
        bottom: 10px;
        left: 10px;
        gap: 10px;
        padding: 15px;
    }
    .page-gdpr__floating-ad-btn {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-gdpr__hero {
        padding: 80px 0;
    }
    .page-gdpr__hero-title {
        font-size: 2.2em;
    }
    .page-gdpr__hero-subtitle {
        font-size: 1em;
    }
    .page-gdpr__grid {
        grid-template-columns: 1fr;
    }
    .page-gdpr__section {
        padding: 40px 0;
    }
    .page-gdpr__section-title {
        font-size: 1.8em;
    }
    .page-gdpr__card {
        padding: 20px;
    }
    .page-gdpr__cta-box {
        padding: 30px;
    }
    .page-gdpr__cta-box h3 {
        font-size: 1.6em;
    }
}

@media (max-width: 480px) {
    .page-gdpr__hero-title {
        font-size: 1.8em;
    }
    .page-gdpr__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-gdpr__floating-ad-text {
        font-size: 0.9em;
    }
    .page-gdpr__floating-ad-btn {
        padding: 8px 15px;
        font-size: 0.9em;
    }
}