.why-choose-us {
    position: relative;
    background: url('../images/background.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    min-height: 700px;
  }

  .container{
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .wp-feature {
    display: flex;
    justify-content: center;
    padding: 25px;
  }
  
  .why-choose-us .overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: rgba(0, 80, 160, 0.6); 
  }
  
  .section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 50px;
    color: #f7f7f7;
  }

  .title-service{
    font-weight: 700;
    text-align: center;
    color: #fff;
  }
  
  .features {
    display: grid;
    grid-template-columns: repeat(4, 1fr); 
    gap: 30px;
    max-width: 1170px;
    margin: 0 auto;
    padding: 0 auto;
  }

  @media screen and (max-width: 1024px) {
    .why-choose-us{
        height: 900px;
    }
    .features {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  /* Mobile (<= 600px) → 1 cột */
  @media screen and (max-width: 600px) {
    .why-choose-us{
        height: 1400px;
    }
    .features {
      grid-template-columns: 1fr;
    }
  }

  .icon svg{
    width: 60px;
    color: #f7f7f7;
    fill: rgb(241, 241, 241);
  }
  
  .feature-box {
    background: rgba(0, 0, 0, 0.35);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: 0.3s;
    min-height: 35px;
    flex: 1;
  }
  
  .feature-box:hover {
    background: rgba(0, 0, 0, 0.55);
    transform: translateY(-5px);
  }
  
  .feature-box .icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
  }
  
  .feature-box h3 {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
  }
  
  .feature-box p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #eee;
  }
  
  .cta {
    text-align: center;
  }
  
  .btn-cta {
    display: inline-block;
    background: #ff4d2d;
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
  }
  
  .btn-cta:hover {
    background: #e63b1a;
  }

 
  