/* style/gdpr.css */
.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #1A2E47; /* Dark blue text for readability */
    background-color: #f8f8f8;
}

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

.page-gdpr__hero {
    background: linear-gradient(135deg, #1A2E47, #3a5b82); /* Dark blue gradient */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-gdpr__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
}

.page-gdpr__hero .page-gdpr__container {
    position: relative;
    z-index: 1;
}

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

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

.page-gdpr__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-gdpr__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A2E47; /* Dark blue text on gold */
    border: 2px solid #FFD700;
}

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

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

.page-gdpr__btn--secondary:hover {
    background-color: #0d1e33;
    transform: translateY(-2px);
}

.page-gdpr__section {
    padding: 60px 0;
    text-align: left;
    position: relative;
}

.page-gdpr__section--alt {
    background-color: #e0e6ed; /* Lighter background for contrast */
}

.page-gdpr__heading {
    font-size: 2.2em;
    color: #1A2E47;
    margin-bottom: 30px;
    text-align: center;
}

.page-gdpr__section p {
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.page-gdpr__card:hover {
    transform: translateY(-5px);
}

.page-gdpr__card-title {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-gdpr__card p {
    font-size: 1em;
    color: #4a658a;
    margin-bottom: 0;
}

.page-gdpr__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-gdpr__list li {
    background-color: #ffffff;
    margin-bottom: 15px;
    padding: 15px 25px;
    border-left: 5px solid #FFD700;
    border-radius: 5px;
    font-size: 1.1em;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

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

.page-gdpr__image-left, .page-gdpr__image-right {
    position: absolute;
    opacity: 0.1;
    z-index: 0;
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.page-gdpr__image-left {
    top: 50%;
    left: 5%;
    transform: translateY(-50%);
}

.page-gdpr__image-right {
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
}

.page-gdpr__contact {
    text-align: center;
    padding-bottom: 80px;
}

.page-gdpr__contact p {
    font-size: 1.1em;
}

.page-gdpr__cta {
    background-color: #1A2E47; /* Dark blue background */
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-gdpr__cta-title {
    font-size: 2.5em;
    color: #FFD700;
    margin-bottom: 20px;
}

.page-gdpr__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.page-gdpr__cta-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.1;
    z-index: 0;
}

.page-gdpr__cta .page-gdpr__container {
    position: relative;
    z-index: 1;
}

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

    .page-gdpr__heading {
        font-size: 1.8em;
    }

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

    .page-gdpr__image-left, .page-gdpr__image-right {
        display: none;
    }
}

@media (max-width: 480px) {
    .page-gdpr__title {
        font-size: 2em;
    }

    .page-gdpr__description, .page-gdpr__section p, .page-gdpr__list li {
        font-size: 1em;
    }

    .page-gdpr__btn {
        padding: 10px 20px;
    }

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