/* Base styles for the privacy policy page */
.page-privacy-policy {
    font-family: Arial, sans-serif;
    color: #333333; /* Dark text on light background */
    line-height: 1.6;
}

.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    padding-top: 10px; /* Small top padding as per instruction */
    background-color: #f0f0f0; /* Fallback background */
    margin-bottom: 40px;
}

.page-privacy-policy__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.page-privacy-policy__hero-content {
    position: relative;
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.95); /* Semi-transparent white background for text */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-50px);
    margin-bottom: -50px;
}

.page-privacy-policy__main-title {
    font-size: clamp(28px, 3.5vw, 48px); /* Responsive font size for H1 */
    color: #017439;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

.page-privacy-policy__description {
    font-size: clamp(16px, 1.8vw, 20px);
    color: #555555;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-privacy-policy__btn-primary,
.page-privacy-policy__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

.page-privacy-policy__btn-primary {
    background: #C30808; /* Register button color */
    color: #FFFFFF; /* Adjusted for WCAG AA contrast */
    border: 2px solid #C30808;
}