   * {
       margin: 0;
       padding: 0;
       box-sizing: border-box;
   }

   body {
       font-family: 'Nunito', sans-serif;
       background: #f4fbff;
       color: #3b3b3b;
       overflow-x: hidden;
   }

   .container {
       width: 100%;
       max-width: 1200px;
       margin: auto;
       padding: 0 20px;
   }

   header {
       background: linear-gradient(135deg, #27c5ff, #1d7ff2);
       padding: 90px 20px 70px;
       position: relative;
       overflow: hidden;
   }

   header::before {
       content: '';
       position: absolute;
       width: 500px;
       height: 500px;
       background: rgba(255, 255, 255, 0.08);
       border-radius: 50%;
       top: -250px;
       right: -150px;
   }

   header::after {
       content: '';
       position: absolute;
       width: 300px;
       height: 300px;
       background: rgba(255, 255, 255, 0.08);
       border-radius: 50%;
       bottom: -120px;
       left: -100px;
   }

   .hero {
       display: flex;
       align-items: center;
       justify-content: space-between;
       gap: 40px;
       flex-wrap: wrap;
       position: relative;
       z-index: 2;
   }

   .hero-text {
       flex: 1;
       min-width: 300px;
   }

   .hero-text h1 {
       font-family: 'Baloo 2', cursive;
       font-size: 4rem;
       line-height: 1;
       color: white;
       margin-bottom: 20px;
   }

   .hero-text p {
       font-size: 1.2rem;
       color: white;
       line-height: 1.8;
       max-width: 600px;
   }

   .hero-image {
       flex: 1;
       display: flex;
       justify-content: center;
       min-width: 300px;
   }

   .hero-image img {
       width: 100%;
       max-width: 450px;
       border-radius: 30px;
       box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
   }

   .section {
       padding: 90px 0;
   }

   .section-title {
       text-align: center;
       margin-bottom: 60px;
   }

   .section-title h2 {
       font-family: 'Baloo 2', cursive;
       font-size: 3rem;
       color: #1174d4;
       margin-bottom: 15px;
   }

   .section-title p {
       max-width: 700px;
       margin: auto;
       font-size: 1.1rem;
       color: #567;
       line-height: 1.8;
   }

   .cards {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
       gap: 25px;
   }

   .card {
       background: white;
       border-radius: 25px;
       padding: 30px;
       box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
       transition: 0.3s;
   }

   .card:hover {
       transform: translateY(-8px);
   }

   .card img {
       width: 100%;
       height: 280px;
       object-fit: cover;
       border-radius: 18px;
       margin-bottom: 20px;
   }

   .card h3 {
       font-family: 'Baloo 2', cursive;
       font-size: 1.6rem;
       color: #1174d4;
       margin-bottom: 15px;
   }

   .card p {
       line-height: 1.8;
       color: #567;
   }

   .highlight {
       background: linear-gradient(135deg, #fff7d8, #ffe47c);
       border-radius: 35px;
       padding: 60px;
       display: flex;
       align-items: center;
       gap: 40px;
       flex-wrap: wrap;
   }

   .highlight img {
       width: 100%;
       max-width: 450px;
       border-radius: 30px;
   }

   .highlight-content {
       flex: 1;
       min-width: 300px;
   }

   .highlight-content h2 {
       font-family: 'Baloo 2', cursive;
       font-size: 3rem;
       color: #d58a00;
       margin-bottom: 20px;
   }

   .highlight-content p {
       font-size: 1.1rem;
       line-height: 1.9;
       color: #654;
   }

   .features {
       display: grid;
       grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
       gap: 20px;
       margin-top: 40px;
   }

   .feature {
       background: white;
       padding: 25px;
       border-radius: 20px;
       text-align: center;
       box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
   }

   .feature h4 {
       font-family: 'Baloo 2', cursive;
       font-size: 1.4rem;
       margin-bottom: 10px;
       color: #1174d4;
   }

   .feature p {
       font-size: 0.95rem;
       line-height: 1.6;
       color: #567;
   }

   .cta {
       background: linear-gradient(135deg, #ff7c35, #ffb347);
       padding: 80px 20px;
       text-align: center;
       border-radius: 40px;
       color: white;
   }

   .cta h2 {
       font-family: 'Baloo 2', cursive;
       font-size: 3rem;
       margin-bottom: 20px;
   }

   .cta p {
       max-width: 800px;
       margin: auto;
       line-height: 1.9;
       font-size: 1.1rem;
       margin-bottom: 35px;
   }

   .cta a {
       display: inline-block;
       padding: 18px 35px;
       background: white;
       color: #ff7c35;
       font-weight: 700;
       text-decoration: none;
       border-radius: 100px;
       transition: 0.3s;
   }

   .cta a:hover {
       transform: scale(1.05);
   }

   footer {
       padding: 50px 20px;
       text-align: center;
       background: #0c4ca3;
       margin-top: 80px;
       color: white;
   }

   footer h3 {
       font-family: 'Baloo 2', cursive;
       font-size: 2rem;
       margin-bottom: 10px;
   }

   footer p {
       opacity: 0.9;
       line-height: 1.8;
   }

   .logo_idabkids {
       display: flex;
       align-items: center;
       justify-content: center;
       gap: 1px;
       margin-bottom: 60px;
       transform-style: preserve-3d;
       animation: floatLogo 5s ease-in-out infinite;
   }

   .ico-idabkids img {
       position: relative;
       inset: 0;
       margin: auto;
       width: calc(200px + 10vw);
   }


   @media(max-width:768px) {

       .ico-idabkids img {
           position: relative;
           inset: 0;
           margin: auto;
           width: calc(250px + 12vw);
       }


       .hero-text h1 {
           font-size: 3rem;
           text-align: center;
       }

       .hero-text p {
           text-align: center;
       }

       .section-title h2 {
           font-size: 2.4rem;
       }

       .highlight {
           padding: 40px 25px;
       }

       .highlight-content h2 {
           font-size: 2.3rem;
       }

       .cta h2 {
           font-size: 2.3rem;
       }

   }