
.hero {
      background-image: url("image/Toronto 2.jpg");
      background-repeat: no-repeat;
      background-size: 100% 100%;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
      padding: 0 1rem;
    }

    .hero h1 {
      font-size: 3rem;
      font-weight: bold;
      background-color: rgba(0, 0, 0, 0.6);
      padding: 1rem;
      border-radius: 10px;
    }

    .section-title {
      font-size: 2rem;
      font-weight: 600;
      margin-bottom: 2rem;
      text-align: center;
    }

    .gallery img {
      object-fit: cover;
      height: 200px;
      width: 100%;
      border-radius: 8px;
    }

    .video-container {
      position: relative;
      width: 100%;
      padding-bottom: 56.25%;
      height: 0;
      overflow: hidden;
      border-radius: 10px;
    }

    .video-container iframe {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 2rem;
      }
    }