* {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        /* Footer */
        .footer {
            background: #1f2937;
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
.contain{
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 0;
        width: 100%;
        padding-right: calc(var(--bs-gutter-x) * 0.5);
        padding-left: calc(var(--bs-gutter-x) * 0.5);
        margin-right: auto;
        margin-left: auto;
    }
        .footer p {
            margin-bottom: 0.5rem;
        }
/* -------------------------------------------------------------------------------------------------- */
.container {
      display: flex;
      height: 100%;
      margin: 0;
      padding: 0;
    }
    h4{
     font-family: "Poppins", sans-serif;
      font-size: 12px;
      color: #877777;
      margin: 0 0 10px 20px;
    }
    .sidebar {
      width: 220px;
      background: #f6f9f6;
      padding: 20px 15px;
      border-right: 1px solid #eee;
      transition: transform 0.3s ease;
    }

    .sidebar .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 30px;
    }
    .sidebar .logo img{
      width: 50px;
      height: 50px;
      border-radius: 50%;
     
    }
     .sidebar .logo h3{
      font-family: "Poppins", sans-serif;
      color: #2d6a4f;
      font-size: 24px;
       font-weight: 400;
    }

    .sidebar nav ul {
      list-style: none;
      padding: 0;
    }
    .sidebar nav ul  a {
          text-decoration: none;
          color: inherit;
        } 
    .sidebar nav ul li {
      padding: 12px 5px;
      display: flex;
      align-items: center;
      gap: 10px;
      color: #2d6a4f;
      font-size: 15px;
      cursor: pointer;
    }
    .main-content {
      flex: 1;
      display: flex;
      flex-direction: column;
    }
.icons {
      width: 30px;
      height: 30px;
      
    }
    .topbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 20px;
      background: transparent;
      
    }

    .topbar .logo-inline {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      margin:auto;
    }
    .topbar .logo-inline img {
      width: 85px;
      height: 85px;
      border-radius: 50%;
    }
    
    .topbar .top-buttons button {
      margin-left: 10px;
      padding: 8px 14px;
      border: none;
      border-radius: 6px;
      font-weight: bold;
      cursor: pointer;
    }

    .topbar .contact {
      background-color: #ffffff;
      border: 1px solid #ccc;
    }

    .topbar .buy {
      background-color: #38b000;
      color: white;
    }

    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }
   .hamburger img{
      width: 30px;
      height: 30px;
      display: block;
      margin: auto;
   }
/*  --------------------------------------------------------------------------------------------------- */
        body {
            font-family: 'Poppins', sans-serif;
            background: #fffbed;
            color: #333;
          
        }

        h2 {
            text-align: center;
            color: #4caf50;
            font-weight: bold;
            margin-bottom: 10px;
        }

        p.subtitle {
            text-align: center;
            margin-bottom: 30px;
            color: #666;
        }

        .steps {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
            margin-bottom: 30px;
        }

        .step {
            background: white;
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 15px;
            width: 200px;
            text-align: center;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: all 0.4s ease;   
        }
        .step:hover {
            box-shadow: 0 4px 10px rgba(30, 255, 0, 0.882);
            transform: translateY(-5px);
            border: 1px solid #2bff00;
            
        }

        .step span {
            display: inline-block;
            background: #f9f9f9;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            line-height: 35px;
            font-weight: 600;
            color: #4caf50;
            margin-bottom: 10px;
        }

        .tip {
            background: #fff7e6;
            padding: 8px;
            font-size: 12px;
            border-radius: 5px;
            margin-top: 8px;
        }

        .visual-guide {
            background: white;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            margin-bottom: 30px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        }

        .visual-guide h3 {
            color: #4caf50;
            margin-bottom: 20px;
        }

        .guide-icons {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 15px;
        }

        .guide-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 14px;
        }

        .guide-item i {
            font-size: 30px;
            color: #4caf50;
            margin-bottom: 5px;
        }
        .facebook-video-link {
            display: block;
            text-align: center;
            text-decoration: none;
            color: #4caf50;
        }
        .facebook-video-link:hover {
            text-decoration: underline;
        }

        .pro-tips {
            background: #558b2f;
            color: white;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
        }

        .pro-tips h3 {
            margin-bottom: 15px;
        }

        .pro-tips-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 50px 50px;
        }

        .tip-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            max-width: 150px;
            text-align: center;
        }

        .tip-card i {
            font-size: 25px;
            color: #ffeb3b;
            margin-bottom: 8px;
        }

        .order {
            background-color: #ffca28;
            color: #333;
            border: none;
            border-radius: 5px;
            padding: 10px 20px;
            display: block;
            margin: 30px auto ;
            cursor: pointer;
            font-weight: 600;
        }

        @media (max-width: 738px) {
            .steps, .guide-icons, .pro-tips-grid {
                flex-direction: column;
                align-items: center;
            }

            .step, .tip-card {
                width: 80%;
            }
             .container {
        flex-direction: column;
      }

      .sidebar {
        position: absolute;
        height: 100vh;
        top: 0;
        left: 0;
        background: #f6f9f6;
        transform: translateX(-100%);
        z-index: 1000;
      }

      .sidebar.active {
        transform: translateX(0);
      }

      .topbar {
        flex-direction: row;
        justify-content: space-between;
      }

      .hamburger {
        display: flex;
      }
        }