/* style/gdpr.css */

/* Base styles for GDPR page content */
.page-gdpr {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light background */
    background-color: var(--background-color, #FFFFFF); /* Inherit from shared or default to white */
    padding-top: var(--header-offset, 120px); /* Fixed header spacing */
}

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

/* Hero Section */
.page-gdpr__hero-section {
    position: relative;
    padding: 80px 0;
    text-align: center;
    overflow: hidden; /* Ensure hero image doesn't overflow */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    background-color: #26A9E0; /* Brand color as background */
    color: #FFFFFF; /* White text for brand color background */
}

.page-gdpr__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(38, 169, 224, 0.8), rgba(38, 169, 224, 0.8)); /* Overlay for text readability */
    z-index: 1;
}

.page-gdpr__hero-section > .page-gdpr__container {
    position: relative;
    z-index: 2;
}

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

.page-gdpr__main-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFFFFF;
    line-height: 1.2;
}

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

.page-gdpr__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* For button responsiveness */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-gdpr__btn-primary {
    background-color: #FFFFFF;
    color: #26A9E0;
    border: 2px solid #FFFFFF;
}

.page-gdpr__btn-primary:hover {
    background-color: #26A9E0;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.page-gdpr__btn-secondary {
    background-color: #26A9E0;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-gdpr__btn-secondary:hover {
    background-color: #FFFFFF;
    color: #26A9E0;
    border-color: #26A9E0;
}

/* Content Area */
.page-gdpr__content-area {
    padding: 60px 0;
    background-color: #FFFFFF; /* Light background for content */
    color: #333333; /* Dark text for light background */
}

.page-gdpr__section-title {
    font-size: 2.2em;
    color: #26A9E0;
    margin-bottom: 30px;
    text-align: left;
    padding-top: 20px; /* Spacing for section titles */
}

.page-gdpr p {
    margin-bottom: 1em;
}

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