/* 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__container--center {
    text-align: center;
}

.page-gdpr__hero {
    background-color: #003366; /* Main color */
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-gdpr__title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #FFCC00; /* Accent color for title for contrast */
    font-weight: bold;
}

.page-gdpr__subtitle {
    font-size: 1.3em;
    opacity: 0.9;
}

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

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

.page-gdpr__heading {
    font-size: 2.2em;
    color: #003366; /* Main color for headings */
    margin-bottom: 25px;
    text-align: center;
}

.page-gdpr__sub-heading {
    font-size: 1.6em;
    color: #003366;
    margin-top: 40px;
    margin-bottom: 15px;
}

.page-gdpr p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #444;
}

.page-gdpr__list {
    list-style: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #444;
}

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

.page-gdpr__list--icons {
    list-style: none;
    margin-left: 0;
    padding-left: 0;
}

.page-gdpr__list--icons li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.page-gdpr__icon {
    color: #FFCC00; /* Accent color for icons */
    font-size: 1.2em;
    margin-right: 10px;
    line-height: 1.6;
    font-weight: bold;
}

.page-gdpr__link-inline {
    color: #003366; /* Main color for inline links */
    text-decoration: underline;
    font-weight: bold;
}

.page-gdpr__link-inline:hover {
    color: #FFCC00; /* Accent color on hover */
    text-decoration: none;
}

.page-gdpr__image-wrapper {
    margin: 40px 0;
    text-align: center;
}

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

.page-gdpr__contact-info {
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 30px;
}

.page-gdpr__text-cta {
    font-size: 1.3em;
    margin-top: 40px;
    margin-bottom: 25px;
    color: #003366;
    font-weight: bold;
}

.page-gdpr__brand-name {
    color: #FFCC00;
}

.page-gdpr__button {
    display: inline-block;
    background-color: #FFCC00; /* Accent color for button background */
    color: #003366; /* Main color for button text */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-gdpr__button:hover {
    background-color: #e6b800; /* Slightly darker accent color on hover */
    color: #001a33; /* Slightly darker main color on hover */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

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

    .page-gdpr__subtitle {
        font-size: 1.1em;
    }

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

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

    .page-gdpr__button {
        padding: 12px 25px;
        font-size: 1em;
    }

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

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

    .page-gdpr__subtitle {
        font-size: 0.9em;
    }

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

    .page-gdpr__list {
        margin-left: 15px;
    }

    .page-gdpr__icon {
        font-size: 1em;
    }

    .page-gdpr__contact-info,
    .page-gdpr__text-cta {
        font-size: 1em;
    }
}