/* Contact Page Specific Styles */

/* Hero section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../assets/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 200px 0;
    text-align: center;
    margin-bottom: 40px;
}
/* Responsive styles */
@media (max-width: 768px) {
    .hero-section {
        padding: 3rem 0;
    }
}