*{
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Poppins', sans-serif;
background: url('/site.png') no-repeat center center/cover;

      color: #ffffff;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      padding: 20px;
    }

    .logo {
      margin-bottom: 30px;
    }

    .logo img {
      height: 80px;
      width: auto;
      object-fit: contain;
    }

    h1 {
      font-size: 48px;
      margin-bottom: 15px;
      color: #ffffff;
    }

    p {
      font-size: 18px;
      color: #ffffff;
      max-width: 600px;
      margin: 0 auto 25px;
      line-height: 1.6;
    }

    .subscribe-box {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .subscribe-box input[type="email"] {
      padding: 12px 15px;
      border-radius: 6px;
      border: none;
      outline: none;
      min-width: 280px;
      font-size: 16px;
    }

    .subscribe-box button {
      padding: 12px 20px;
      background-color: #0077b6;
      border: none;
      color: #ffffff;
      font-weight: 600;
      border-radius: 6px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .subscribe-box button:hover {
      background-color: #005f86;
    }

    .contact {
      margin-top: 30px;
      font-size: 15px;
      color: #ffffff;
    }

    footer {
      position: absolute;
      bottom: 15px;
      font-size: 13px;
      color: #ffffff;
    }

    @media (max-width: 600px) {
      h1 {
        font-size: 32px;
      }
      p {
        font-size: 16px;
      }
    }