/* 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(0, 119, 255, 0.73)), url('https://cdn.matthewsnetmedia.co.uk/2022/sqbx/sqbx_otm_2023_IMG-6958.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: 175px; width: 100%;
}
.invisible {
  display: none;
}
		
		.migration-alert {
            background-color: #0077ff;
            color: white;
            padding: 20px;
            margin: 20px 0;
            border-radius: 5px;
            font-size: 1.2rem;
            text-align: center;
        }
		
      /* 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;
        }
      }
