
    body {
      font-family: 'Montserrat', sans-serif;
      background-color: #f0f2f5;
    }

    .banner {
      background: linear-gradient(to right, #1f4037, #366d53);
      color: white;
      text-align: center;
      padding: 60px 20px;
      border-bottom-left-radius: 60px;
      border-bottom-right-radius: 60px;
    }

    .banner h1 {
      font-size: 2.8rem;
      font-weight: 700;
    }

    .gallery-title {
      text-align: center;
      font-weight: 700;
      font-size: 2.3rem;
      margin: 40px 0 10px;
      color: #333;
    }

    .gallery-subtitle {
      text-align: center;
      font-size: 1rem;
      color: #666;
      margin-bottom: 40px;
    }

    .gallery-img {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
      cursor: pointer;
      height: 220px;
    }

    .gallery-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 12px;
      transition: transform 0.4s ease;
    }

    .gallery-img:hover img {
      transform: scale(1.1);
    }

    .modal-content {
      background: none;
      border: none;
    }

    .modal-img {
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 0 30px rgba(0,0,0,0.4);
    }

    @media (max-width: 576px) {
      .banner h1 {
        font-size: 2rem;
      }
      .gallery-title {
        font-size: 1.8rem;
      }
    }
