 <style>
    *{
      margin:0;
      padding:0;
      box-sizing:border-box;
      font-family:'Poppins',sans-serif;
    }

    body{
      background:#fdfdfd;
      color:#333;
      overflow-x:hidden;
    }

    a{
      text-decoration:none;
    }

    /* HEADER */
    header{
      width:100%;
      padding:20px 8%;
      display:flex;
      justify-content:space-between;
      align-items:center;
      position:fixed;
      top:0;
      z-index:1000;
      background:rgba(255,255,255,0.95);
      backdrop-filter:blur(10px);
      box-shadow:0 2px 10px rgba(0,0,0,0.05);
    }

    .logo{
      font-size:28px;
      font-weight:700;
      color:#ff6b81;
    }

    .logo span{
      color:#4dabf7;
    }

    nav a{
      margin-left:150px;
      color:#333;
      font-weight:500;
      transition:.3s;
    }

    nav a:hover{
      color:#ff6b81;
    }

    /* HERO SECTION */
    .hero{
      width:100%;
      min-height:100vh;
      display:flex;
      align-items:center;
      justify-content:space-between;
      padding:120px 8% 60px;
      background:linear-gradient(to right,#fff4f7,#eef7ff);
    }

    .hero-text{
      max-width:600px;
    }

    .hero-text h1{
      font-size:60px;
      line-height:1.2;
      color:#222;
      margin-bottom:20px;
    }

    .hero-text h1 span{
      color:#ff6b81;
    }

    .hero-text p{
      font-size:18px;
      line-height:1.8;
      color:#666;
      margin-bottom:35px;
    }

    .btn-group{
      display:flex;
      gap:15px;
    }

    .btn{
      padding:15px 30px;
      border-radius:50px;
      font-weight:600;
      transition:.3s;
      display:inline-block;
    }

    .primary-btn{
      background:#ff6b81;
      color:#fff;
      box-shadow:0 8px 20px rgba(255,107,129,.3);
    }

    .primary-btn:hover{
      transform:translateY(-3px);
      background:#ff4f70;
    }

    .secondary-btn{
      background:#fff;
      color:#4dabf7;
      border:2px solid #4dabf7;
    }

    .secondary-btn:hover{
      background:#4dabf7;
      color:#fff;
    }

    .hero-image img{
      width:500px;
      max-width:60%;
      animation:float 4s ease-in-out infinite;
    }

    @keyframes float{
      0%{transform:translateY(0);}
      50%{transform:translateY(-15px);}
      100%{transform:translateY(0);}
    }

    /* FEATURES */
    .features{
      padding:100px 8%;
      background:#fff;
      text-align:center;
    }

    .section-title{
      font-size:42px;
      margin-bottom:20px;
      color:#222;
    }

    .section-subtitle{
      color:#666;
      max-width:700px;
      margin:auto;
      line-height:1.8;
      margin-bottom:60px;
    }

    .feature-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
      gap:30px;
    }

    .feature-card{
      background:#fff;
      padding:40px 30px;
      border-radius:25px;
      transition:.4s;
      box-shadow:0 10px 30px rgba(0,0,0,0.05);
    }

    .feature-card:hover{
      transform:translateY(-10px);
      box-shadow:0 20px 40px rgba(0,0,0,0.08);
    }

    .feature-icon{
      font-size:50px;
      margin-bottom:20px;
    }

    .feature-card h3{
      margin-bottom:15px;
      color:#222;
    }

    .feature-card p{
      color:#666;
      line-height:1.7;
    }

    /* ABOUT */
    .about{
      padding:100px 8%;
      display:flex;
      align-items:center;
      gap:60px;
      background:#f9fbff;
      flex-wrap:wrap;
    }

    .about img{
      width:500px;
      max-width:100%;
      border-radius:30px;
    }

    .about-text{
      flex:1;
    }

    .about-text h2{
      font-size:45px;
      margin-bottom:20px;
    }

    .about-text p{
      color:#666;
      line-height:1.9;
      margin-bottom:25px;
    }

    /* CTA */
    .cta{
      padding:100px 8%;
      text-align:center;
      background:linear-gradient(to right,#ff6b81,#ff8fa3);
      color:#fff;
    }

    .cta h2{
      font-size:48px;
      margin-bottom:20px;
    }

    .cta p{
      max-width:700px;
      margin:auto;
      line-height:1.8;
      margin-bottom:35px;
    }

    .cta .btn{
      background:#fff;
      color:#ff6b81;
    }

    .cta .btn:hover{
      background:#f5f5f5;
    }

    /* FOOTER */
    footer{
      background:#222;
      color:#ddd;
      text-align:center;
      padding:30px;
    }

    footer p{
      font-size:15px;
    }

    /* RESPONSIVE */
    @media(max-width:991px){

      .hero{
        flex-direction:column;
        text-align:center;
      }

      .hero-text h1{
        font-size:42px;
      }

      .btn-group{
        justify-content:center;
      }

      .about{
        flex-direction:column;
      }

      nav{
        display:none;
      }
    }


img{
  width:100%;
  height:auto;
}

@media(max-width:768px){

  h1{
    font-size:30px;
  }

/* HEADER */
.header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 25px;
    background:#ff69b4;
    position:relative;
}

.logo{
    color:white;
    font-size:28px;
    font-weight:bold;
}

.logo span{
    color:yellow;
}

/* NAVBAR */
.navbar{
    display:flex;
    gap:20px;
}

.navbar a{
    color:white;
    text-decoration:none;
    font-size:18px;
}

/* MENU BUTTON */
.menu-toggle{
    display:none;
    font-size:32px;
    color:white;
    cursor:pointer;
}

/* MOBILE */
@media screen and (max-width:768px){

    .menu-toggle{
        display:block;
    }

    .navbar{
        display:none;
        flex-direction:column;
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:#ff69b4;
        padding:10px 0;
    }

    .navbar.show{
        display:flex;
    }

    .navbar a{
        padding:15px;
        text-align:center;
        border-top:1px solid rgba(255,255,255,0.2);
    }
}

  </style>