/* style/gdpr.css */
/* Base styles for the GDPR page */
.page-gdpr {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #FFF6D6; /* Main text color for dark background */
    background-color: #0A0A0A; /* Page background */
}

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

/* Hero Section */
.page-gdpr__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* For fixed header */
    background: linear-gradient(135deg, #F2C14E, #FFD36B); /* Brand colors for gradient */
    overflow: hidden;
    display: flex;
    flex-direction: column; /* Image above content */
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
}

.page-gdpr__hero-image-wrapper {
    width: 100%;
    max-height: 675px; /* Limit height for hero image */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-gdpr__hero-image {
    width: 100%;
    height: 675px; /* Actual display height */
    display: block;
    object-fit: cover;
}

.page-gdpr__hero-content {
    padding: 20px;
    max-width: 900px;
    margin-top: 20px;
    z-index: 1; /* Ensure content is above any background elements */
}

.page-gdpr__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive font size */
    font-weight: bold;
    color: #FFF6D6; /* Light text for main title */
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-gdpr__hero-description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 30px;
    color: #FFF6D6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-gdpr__btn-primary,
.page-gdpr__btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 100%; /* Ensure buttons fit in mobile */
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}