.why-choose-us-section {
    padding: 80px 0;
    background: #f9f7f4;
  }
  .wcu-smalltitle {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #3d6b5e;
    font-weight: 600;
    margin-bottom: 10px;
  }
  .wcu-heading {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    line-height: 1.2;
  }
  .wcu-subtext {
    font-size: 15px;
    color: #666;
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 40px;
  }
  .wcu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 20px;
  }
  .wcu-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px 28px;
    border: 1px solid #e8e8e8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .wcu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(61, 107, 94, 0.12);
  }
  .wcu-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #3d6b5e;
    border-radius: 12px 0 0 12px;
  }
  .wcu-icon-wrap {
    width: 54px;
    height: 54px;
    background: #eaf4f0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
  }
  .wcu-icon-wrap svg {
    width: 26px;
    height: 26px;
    fill: #3d6b5e;
  }
  .wcu-card h5 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
  }
  .wcu-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.7;
    margin: 0;
  }
  .wcu-card strong {
    color: #3d6b5e;
    font-weight: 600;
  }
  .wcu-cta {
    margin-top: 50px;
    text-align: center;
  }
  .wcu-cta a.read-more {
    background: #3d6b5e;
    color: #fff;
    padding: 14px 38px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s ease;
  }
  .wcu-cta a.read-more:hover {
    background: #2d5248;
  }