.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    min-height: 60vh;
    display: flex;
    align-items: center;
  }
  .hero-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 1;
  }
  .hero-section .container {
    position: relative;
    z-index: 2;
  }
  .gallery-img {
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
  }
  .gallery-img:hover { transform: scale(1.05); }
  .info-card {
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border-radius: 15px;
    transition: transform 0.3s ease;
  }
  .info-card:hover { transform: translateY(-5px); }
  