/* Hero section styles */
.hero {
    height: 600px;
    position: relative;
    background: url('https://images.unsplash.com/photo-1613490493576-7fde63acd811?auto=format&fit=crop&q=80') center/cover;
    margin-top: 60px;
  }
  
  .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
  }
  
  .hero-content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
  }
  
  .hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  
  .hero-text {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
  }
  
  .search-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 800px;
  }
  
  .search-form {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 1rem;
  }
  
  @media (max-width: 768px) {
    .hero {
      height: 500px;
    }
  
    .hero-title {
      font-size: 2rem;
    }
  
    .search-form {
      grid-template-columns: 1fr;
    }
  }