.features-section {
    padding: 60px 20px;
    background: #f9f9f9;
  }
  
  .features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1100px;
    margin: auto;
  }
  
  .feature-box {
    display: flex;
    align-items: center;   /* 🔹 Center icon & text vertically */
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  }
  
  .feature-icon {
    width: 70px;   /* 🔹 Increased size */
    height: 70px;  /* 🔹 Increased size */
    margin-right: 18px;
    flex-shrink: 0;
  }
  
  .feature-text {
    text-align: left;
  }
  
  .feature-title {
    font-size: 18px;
    font-weight: bold;
    color: #2e7d32; /* Green */
    margin-bottom: 6px;
  }
  
  .feature-subtitle {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
  }
  
  .features-section {
    padding: 60px 20px;
    background: #f9f9f9;
  }
  
  .features-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);  /* 🔹 2 column × 2 row */
    gap: 40px;
    max-width: 1000px;
    margin: auto;
  }
  
  .feature-box {
    display: flex;
    align-items: center;   /* 🔹 Align icon + text vertically */
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
    margin-right: 18px;
    flex-shrink: 0;
  }
  
  .feature-text {
    text-align: left;
  }
  
  .feature-title {
    font-size: 18px;
    font-weight: bold;
    color: #2e7d32; /* Green */
    margin-bottom: 6px;
  }
  
  .feature-subtitle {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
  }
  
  .features-section {
    padding: 60px 20px;
    background: #f9f9f9;
  }
  
  .features-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 2 column × 4 rows */
    gap: 30px;
    max-width: 1100px;
    margin: auto;
  }
  
  .feature-box {
    display: flex;
    align-items: center; /* icon + heading align center */
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.12);
  }
  
  .feature-icon {
    width: 65px;
    height: 65px;
    margin-right: 16px;
    flex-shrink: 0;
  }
  
  .feature-title {
    font-size: 16px;
    font-weight: bold;
    color: #2e7d32; /* Green heading */
    margin: 0;
  }
  
  