.about-form {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-0%, -100%);
    background-color: rgba(57, 184, 84, 0.8); /* Slightly transparent background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 1000px;
  }
  .about-form input,
  .about-form select {
    margin-right: 10px;
  }
  

  /* How It Works Section */
.how-it-works {
    text-align: center;
    padding: 80px 0;
    background: #f8f9fa;
  }
  
  .section-title {
    font-size: 32px;
    font-weight: bold;
    color: #333;
  }
  
  .section-subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
  }
  
  .step {
    padding: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .step:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .step-number {
    width: 80px;
    height: 80px;
    background: #4169e1;
    color: white;
    font-size: 32px;
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin: 0 auto 15px;
    transition: background 0.3s ease;
  }
  
  .step:hover .step-number {
    background: #2c3e50;
  }
  
  h3 {
    font-size: 22px;
    color: #333;
  }
  
  p {
    font-size: 16px;
    color: #666;
  }
  .hidden {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  }
  
  .show {
    opacity: 1;
    transform: translateY(0);
  }
    
  .counter-section {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: left;
    justify-content: left;
    align-items: center;
}
.counter {
    font-size: 36px;
    font-weight: bold;
    color: #0d3b66;
}
.counter-box {
    padding: 20px;
    transition: transform 0.3s ease;
}
.counter-box:hover {
    transform: scale(1.1);
}
.feature-box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.feature-icon {
    width: 50px;
    height: 50px;
    background: #e3e6e8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 15px;
}