:root {
    --orange: #f57c00;
    --blue: #003366;
    --white: #ffffff;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f8f9fa;
}

.page-header {
    background: var(--orange);
    color: var(--white);
    margin-top: 24px;
    padding: 20px 0 !important;
    text-align: center;
}

.page-header h1 {
    font-size: 36px !important;
    font-weight: 700;
    color: var(--white) !important;
}

.page-header p {
    font-size: 18px;
}

@media (max-width: 768px) {
    .page-header {
        padding: 30px 0;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
}

.pdf-button i {
    margin-right: 8px;
    font-size: 1.2rem;
    background: #003366 !important;
}