 * {
      box-sizing: border-box;
      font-family: 'Outfit', sans-serif;
    }
    body {
      margin: 0;
      background:#001c13;
      color: white;
    }
    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 40px;
      background-color: #045f54;
    }
    header h1 {
      font-size: 24px;
      margin: 0;
    }
    nav a {
      color: white;
      text-decoration: none;
      margin-left: 20px;
      font-weight: 600;
    }
    .hero {
      display: grid;
      grid-template-columns: 1fr 2fr;

    }
    .hero-text {
      /* background: #3b82f6; */
      padding-left: 40px;
      padding-right: 40px;
      padding-bottom: 40px;
    }
    .hero-text h2 {
      font-size: 40px;
      margin-bottom: 20px;
    }
    .hero-text p {
      font-size: 18px;
      line-height: 1.6;
    }
    .hero-img {
      position: relative;
      width: 100%;
      display: flex;
      justify-content: center;
      flex-direction: column;
      align-items: center;
      /* background: #3bf69f; */
    }
    .phone-frame {
      width: 280px;
      height: 560px;
      border: 10px solid #525252;
      border-radius: 30px;
      overflow: hidden;
      background-color: black;
      box-shadow: 0 0 40px rgba(0, 0, 0, 0.6);
      margin-bottom: 30px;
    }
    .phone-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    
    
    .download-box{
        padding-top: 30px;
        padding-left: 30px;
    }

     .logo {
      width: 100px;
      height: 50px;
    
    }

    .download {
      background-color: #1e293b;
      padding-left: 40px;
      padding-right: 40px;
      padding-top: 10px;
      padding-bottom: 10px;
      border-radius: 20px;
      width: 320px;
      text-align: center;
      box-shadow: 0 0 20px rgba(0,0,0,0.3);
    }
    .download h3 {
      margin-bottom: 10px;
      font-size: 20px;
    }
    .download a.download-btn {
      display: inline-block;
      margin: 15px 0;
      padding: 12px 30px;
      background: #3b82f6;
      color: white;
      font-weight: bold;
      border-radius: 8px;
      text-decoration: none;
    }
    .note {
      font-size: 14px;
      color: #cbd5e1;
    }
    .features {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      padding: 60px 40px;
      background-color: #045f54;
    }
    .feature-card {
      background: #334155;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
    }
    .feature-card h3 {
      margin-bottom: 10px;
    }
    footer {
      background-color: #045f54;
      text-align: center;
      padding: 30px;
      font-size: 14px;
      color: #94a3b8;
    }

    footer a img {
      transition: transform 0.2s;
    }

    footer a:hover img {
      transform: scale(1.2);
    }

    @media screen and (max-width: 768px) {
  .hero {
    display: flex;
    flex-direction: column;
    padding: 40px 20px;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }

  .hero-text h2 {
    font-size: 32px;
  }

  .hero-text p {
    font-size: 16px;
  }

  .phone-frame {
    width: 220px;
    height: 440px;
  }

  .download {
    width: 100%;
    margin-top: 20px;
  }

  nav {
    display: none; /* Optional: hide nav on small screens */
  }
}
