* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: 'Poppins', sans-serif;
      background: #f5f7fa;
      color: #333;
    }
    header {
      background: white;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 40px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    }
    .logo {
      font-size: 24px;
      font-weight: 600;
    }
    nav a {
      margin-left: 20px;
      text-decoration: none;
      color: #333;
      font-weight: 500;
    }
    .hero {
      background: linear-gradient(to bottom, #724ae8, #9b6ff5);
      color: white;
      text-align: center;
      padding: 100px 20px;
    }
    .hero h1 {
      font-size: 3rem;
      margin-bottom: 20px;
    }
    .hero p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 30px;
    }
    .search {
      background: linear-gradient(to bottom, #724ae8, #9b6ff5);
      color: white;
      text-align: center;
      padding: 100px 20px;
    }
    .search h1 {
      font-size: 3rem;
      margin-bottom: 20px;
    }
    .search p {
      font-size: 1.2rem;
      max-width: 700px;
      margin: 0 auto 30px;
    }
    .cta-button {
      padding: 12px 30px;
      background: white;
      color: #724ae8;
      font-weight: bold;
      border-radius: 30px;
      border: none;
      cursor: pointer;
    }
    .features, .how-it-works, .templates, .footer-cta {
      padding: 60px 20px;
      text-align: center;
    }
    .features h2, .how-it-works h2, .templates h2 {
      font-size: 2rem;
      margin-bottom: 40px;
    }
    .feature-grid {
      display: flex;
      justify-content: center;
      gap: 60px;
      flex-wrap: wrap;
    }
    .feature {
      max-width: 200px;
    }
    .feature i {
      font-size: 2.5rem;
      color: #724ae8;
      margin-bottom: 15px;
    }
    .how-it-works ol {
      list-style: decimal inside;
      max-width: 500px;
      margin: 0 auto;
      text-align: left;
      font-size: 1.1rem;
    }
    .template-gallery {
      display: flex;
      justify-content: center;
      gap: 20px;
      flex-wrap: wrap;
    }
    .template-gallery img {
      width: 180px;
      border-radius: 8px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    .footer-cta {
      background: linear-gradient(to bottom, #724ae8, #9b6ff5);
      color: white;
    }
    .footer-cta h2 {
      margin-bottom: 20px;
    }
    .footer-cta .cta-button {
      background: white;
      color: #724ae8;
    }
    footer {
      background: #222;
      color: white;
      text-align: center;
      padding: 30px 20px;
      /*margin-top: 60px;*/
    }
    footer p {
      margin-bottom: 10px;
    }
    footer a {
      color: #ccc;
      margin: 0 10px;
      text-decoration: none;
    }


  /* Burger Button */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
}


@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 60px;
        right: -250px; /* Hidden by default */
        width: 250px; /* Sidebar width */
        height: 100vh; /* Full screen height */
        background: #fff;
        display: flex;
        flex-direction: column;
        /*justify-content: center;*/
        align-items: flex-start; /* Align links to the left inside sidebar */
        padding: 20px;
        gap: 20px;
        transition: right 0.3s ease-in-out;
        z-index: 999;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }

    .navbar.open {
        right: 0; /* Slide in */
    }

    .burger {
        display: flex;
        z-index: 1000;
        position: relative;
        cursor: pointer;
    }

    .navbar a {
        font-size: 18px;
        color: #333;
        text-decoration: none;
    }
}



/*@media (max-width: 768px) {
    .navbar {
        position: fixed;
        top: 60px;
        right: -100%;
        width: 200px;
        background: #fff;
        display: flex;
        flex-direction: column;
        gap: 15px;
        padding: 20px;
        box-shadow: -2px 0 5px rgba(0,0,0,0.1);
        transition: right 0.3s ease-in-out;
    }

    .navbar.open {
        right: 0;
    }

    .burger {
        display: flex;
    }
}*/