* {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    h1, h2, h3, h4
    {
      font-family: "coolvetica";
      letter-spacing: 2px;
      font-weight: 600;
    }
    body , button{
      font-family: 'montserrat', sans-serif;
      background-color: #f9fafb;
      color: #1f2937;
      line-height: 1.6;
    }
    header {
      background: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.3)), url('../img/hero-image.jpg') center/cover no-repeat;
      color: white;
      height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 0 20px;
      background-repeat: no-repeat;
      background-size: cover;
    }
    header img {
      width: 300px;
      margin-bottom: 1.5rem;
    }
    header h1 {
      font-size: 5rem;
      margin-bottom: 1rem;
    }

    header p {
      font-size: 1.2rem;
      margin-bottom: 1.5rem;
    }
    .btn {
      background-color: #14b8a6;
      color: white;
      padding: 0.75rem 1.5rem;
      border: none;
      border-radius: 0.5rem;
      text-decoration: none;
      font-weight: bold;
    }
    section {
      padding: 3rem 1rem;
      max-width: 1200px;
      margin: 0 auto;
    }
    h2 {
      font-size: 2rem;
      color: #0f766e;
      margin-bottom: 2rem;
      text-align: left;
    }

    .grid {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      align-items: center;
    }
    .grid img {
      max-width: 100%;
      border-radius: 0.5rem;
      box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    }
    .grid div, .grid p {
      flex: 1;
      min-width: 300px;
    }
    .vision h2, .vision p
    {
      text-align: center !important;
      color: white !important;
    }
    .vision
    {
      background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.6)), url('../img/ia2.jpeg') center/cover no-repeat;
      color: white !important;
      align-items: center;
      text-align: center;
      padding: 5% 15%;
      background-repeat: no-repeat;
      background-size: cover;
      border-radius: 30px;
    }
    ul {
      padding-left: 1.5rem;
      list-style: disc;
    }
    .btn-ticket
    {
      padding: 13px;
      outline: none;
      background-color: green;
      border-style: none;
    }
    footer {
      background-color: #111827;
      color: white;
      text-align: center;
      padding: 3rem 1rem;
    }
    footer a {
      color: #5eead4;
      text-decoration: underline;
    }
    @media (max-width: 768px) {
      header h1 {
        font-size: 2rem;
      }
      header p {
        font-size: 1rem;
      }
    }