    @import url('https://fonts.googleapis.com/css2?family=Hind:wght@300;400;500;600;700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

    html, body {
      height: 100%;
      margin: 0;
      font-family: "Poppins", sans-serif;
      background: url('1.jpg') no-repeat center center fixed;
      background-size: cover;
      color: white;
      display: flex;
      flex-direction: column;
      align-items: center;
      overflow-x: hidden;
    }
body > footer {
  align-self: stretch;
}

    .page-wrapper {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    header {
      margin-top: 60px;
      text-align: center;
    }
    header img {
      margin-top: 60px;
      text-align: center;
      width: 50%;
    }

    header h1 {
      font-size: 48px;
      letter-spacing: 4px;
      margin-bottom: 0;
    }

    header h2 {
      font-weight: normal;
      letter-spacing: 2px;
      margin-top: 0;
    }

    .lead {
      font-weight: bold;
      margin-top: 40px;
      font-size: 18px;
      text-align: left;
    }

    .paragraph {
      margin-top: 20px;
      font-size: 16px;
      max-width: 50%;
      text-align: justify;
      line-height: 1.6;
    }

    .coming {
      margin: 60px 0 20px;
      font-size: 28px;
      font-weight: bold;
      border-bottom: 2px solid #5FD4E8;
      padding-bottom: 10px;
    }

    .newsletter {
      text-align: center;
      margin-bottom: 40px;
    }

    .newsletter p {
      font-size: 18px;
    }

    .newsletter input[type="email"] {
      padding: 10px;
      width: 250px;
      border: none;
      border-radius: 4px 0 0 4px;
    }

    .newsletter button {
      padding: 11px 20px;
      border: none;
      background-color: #1B2375;
      color: white;
      font-weight: bold;
      border-radius: 0 4px 4px 0;
      cursor: pointer;
    }

    .contact {
      display: flex;
      align-items: center;
      gap: 30px;
      margin-bottom: 60px;
      font-size: 16px;
    }

    .contact img {
      vertical-align: middle;
      height: 20px;
      margin-right: 8px;
    }

    footer {
      background-color: #1B2375;
      width: 100%;
      padding: 15px;
      text-align: center;
      min-height: 50px;
    }

    footer a {
      color: white;
      margin: 0 12px;
      text-decoration: none;
    }
    @media (max-width: 990px) {
  .lead, .paragraph {
    max-width: 90%;
    padding: 10px 10px;
  }
  header img {
  margin-top: 10px;
  text-align: center;
  width: 90%;
  }
    .contact {
    flex-direction: column; /* Stack children vertically */
    align-items: stretch;   /* Optional: make divs full width */
    gap: 16px;              /* Optional: adjust vertical spacing */
  }

  .contact div {
    width: 100%;
  } 
}