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

.page-gdpr__hero-section {
    background-color: #003366; /* Main color */
    color: #FFFFFF; /* White text for contrast */
    padding: 80px 20px;
    text-align: center;
}

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

.page-gdpr__hero-title {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: bold;
    color: #FFCC00; /* Secondary color for emphasis */
}

.page-gdpr__hero-subtitle {
    font-size: 1.2em;
    opacity: 0.9;
}

.page-gdpr__content-section {
    padding: 60px 0;
}

.page-gdpr__text-block {
    background-color: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin-bottom: 40px;
}

.page-gdpr__heading {
    font-size: 2em;
    color: #003366; /* Main color */
    margin-bottom: 20px;
    border-bottom: 2px solid #FFCC00; /* Secondary color accent */
    padding-bottom: 10px;
}

.page-gdpr__paragraph {
    margin-bottom: 15px;
    font-size: 1.1em;
    color: #444;
}

.page-gdpr__highlight {
    color: #003366;
    font-weight: bold;
}

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

.page-gdpr__numbered-list {
    list-style-type: decimal;
}

.page-gdpr__list-item {
    margin-bottom: 10px;
    font-size: 1.05em;
}

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

.page-gdpr__contact-info {
    font-size: 1.1em;
    margin-top: 20px;
    font-weight: bold;
    color: #003366;
}

.page-gdpr__contact-link {
    color: #FFCC00; /* Secondary color for links */
    text-decoration: none;
    font-weight: bold;
}

.page-gdpr__contact-link:hover {
    text-decoration: underline;
    color: #e6b800; /* Slightly darker gold on hover */
}

.page-gdpr__call-to-action {
    text-align: center;
    margin-top: 50px;
}

.page-gdpr__button {
    display: inline-block;
    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;
}

.page-gdpr__button--primary {
    background-color: #FFCC00; /* Secondary color */
    color: #003366; /* Main color for text */
    border: 2px solid #FFCC00;
}

.page-gdpr__button--primary:hover {
    background-color: #e6b800; /* Darker gold on hover */
    color: #002244; /* Darker blue on hover */
    border-color: #e6b800;
}

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

    .page-gdpr__hero-subtitle,
    .page-gdpr__paragraph,
    .page-gdpr__list-item,
    .page-gdpr__contact-info {
        font-size: 1em;
    }

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

    .page-gdpr__text-block {
        padding: 25px;
        margin-bottom: 25px;
    }

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

@media (max-width: 480px) {
    .page-gdpr__hero-section {
        padding: 60px 15px;
    }

    .page-gdpr__hero-title {
        font-size: 1.8em;
    }

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

    .page-gdpr__content-section {
        padding: 40px 0;
    }
}