* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    body {
      background: #ffffff;
      color: #1a1a1a;
      height: 100vh;
      overflow-x: hidden;
      position: relative;
    }

    .background-text {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 12vw;
      color: #a8a8a8;
      font-weight: 900;
      z-index: 0;
      white-space: nowrap;
      pointer-events: none;
      user-select: none;
    }

    .container {
      position: relative;
      z-index: 1;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 20px;
    }

    .logo {
      max-width: 300px;
      width: 80%;
      margin-bottom: 30px;
    }

    h1 {
      font-size: 2rem;
      color: #305096;
      margin-bottom: 15px;
    }

    .contact {
      font-size: 1rem;
      color: #545454;
      font-weight: 600;
      margin: 10px 0;
    }

    .contact i {
      color: #a8a8a8;
      margin-right: 8px;
    }

    .contact a {
      font-weight: 400;
      color: #0077cc;
      text-decoration: none;
    }

    .contact a:hover {
      text-decoration: underline;
    }

    /* Responsive Design */

    @media screen and (max-width: 768px) {
      .background-text {
        font-size: 10vw;
      }

      h1 {
        font-size: 1.5rem;
      }

      .contact {
        font-size: 0.95rem;
      }

      .logo {
        max-width: 220px;
        margin-bottom: 100px;
        
      }
      .content{
        margin-top: 30px;
      }
    }

    @media screen and (min-width: 769px) and (max-width: 1024px) {
      h1 {
        font-size: 2.2rem;
      }

      .background-text {
        font-size: 10vw;
      }

      .logo {
        max-width: 260px;
        margin-bottom: 120px;
      }
    }

    @media screen and (min-width: 1025px) {
      h1 {
        font-size: 2.5rem;
      }

      .background-text {
        font-size: 8vw;
      }

      .content{
        margin-top: 50px;
      }

      img{
        margin-bottom: 150px!important;
      }
    }