/* Global styles */
      * {
        box-sizing: border-box;
      }
      
      body {
        font-family: Figtree, Gotham, Montserrat, Arial, sans-serif;
        margin: 0;
      }
      
      /* Hero section */
      .hero {
        height: 85vh;
        background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.52), rgba(235, 12, 64, 0.73)), url('https://cdn.37hrd.uk/imgstor/ky_poster_img_1329.JPG');
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-align: center;
        font-size: 2.5rem;
      }
      
      /* Second section */
      .section {
        padding: 50px;
        text-align: center;
      }
      
      h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
      }
      
      p {
        font-size: 1.2rem;
        line-height: 1.5;
        margin-bottom: 30px;
      }

h1 {
  font-family: Figtree, Gotham, Montserrat, sans-serif;
  font-weight: 900;
}
.mmn-logo {
  max-width: 50px;
}
.invisible {
  display: none;
}
      
      /* Media queries */
      @media (max-width: 768px) {
        h2 {
          font-size: 2rem;
        }
        
        p {
          font-size: 1rem;
        }
      }
      
      @media (max-width: 576px) {
        h2 {
          font-size: 1.5rem;
        }
        
        p {
          font-size: 0.8rem;
        }
        
        .hero {
          height: 50vh;
          font-size: 2rem;
        }
      }