.features-section {
    display: flex;
    gap: 5px; 
    padding: 60px 0; 
    margin-top: -60px; 
    justify-content: space-between;
  }
  
  .feature-box {
    background-color: #f6f3ef;
    padding: 40px 30px;
    flex: 1 1 0; 
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
    height: 500px;
  }
  
  .feature-box:hover {
    background-color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transform: translateY(-4px);
  }  
  .icon {
    font-size: 50px;
    color: #002d5b;
    margin-bottom: 20px;
  }
  
  .feature-box h3 {
    font-size: 30px;
    color: #1d1d1f;
   font-family: cursive;
    margin-bottom: 15px;
    line-height: 1.4;
  }
  
  .feature-box p {
    font-size: 15px;
    color: #4f4f4f;
    line-height: 1.8;
    margin-bottom: 30px;
  }
  
  .feature-link {
    text-decoration: none;
    color: #002d5b;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-transform: uppercase;
  }
  
  .feature-link span {
    display: inline-block;
    border: 1px solid #002d5b;
    border-radius: 50%;
    padding: 5px 10px;
    font-size: 14px;
    transition: background 0.3s ease, color 0.3s ease;
  }
  
  .feature-box:hover .feature-link span {
    background: #002d5b;
    color: #fff;
  }
  .why-choose-us {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #dce6ee;
    padding: 0 0;
    margin-bottom: 0;
    margin-top: -60px;
    flex-wrap: wrap;
  }
  
  .why-choose-us__left {
    position: relative;
    width: 50%;
    height: 100%;
  }
  
  .why-img {
    width: 90%;
    height: 600px;
    display: block;
    margin-top: 60px;
  }
  
  .counter-box {
    position: absolute;
    bottom: 30px;
    left: 30px;
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    padding: 20px;
    text-align: left;
  }
  
  .counter-number {
    font-size: 40px;
    font-weight: bold;
  }
  
  .counter-labels strong {
    display: block;
    font-size: 16px;
    margin-top: 5px;
  }
  
  .counter-labels small {
    font-size: 12px;
    opacity: 0.8;
  }
  
  .why-choose-us__right {
    width: 50%;
    padding: 40px;
  }
  
  .choose-us-label {
    background-color: #f4c51f;
    padding: 5px 10px;
    font-size: 13px;
    margin-bottom: 10px;
    font-family: cursive;
    display: inline-block;
    margin-top: 10px;
  }
  
  .why-choose-us__right h2 {
    font-size: 30px;
    font-family:cursive;
    margin-bottom: 15px;
  }
  
  .why-choose-us__right p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4f4f4f;
    line-height: 1.7;
    margin-bottom: 40px;
  }
  
  .why-choose-us__right ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    
  }

.why-choose-us__right li {
    display: flex;
    align-items: flex-start;
    gap: 17px;
    font-family:'Times New Roman', Times, serif;
    margin-bottom: 20px;

    
  }
  
  .icon-list {
    font-size: 20px;
    color: #003366;
    margin-top: 3px;
  }
  

  .clinic-btn {
    background-color: white;
    color: black;
    padding: 10px 20px;
    border: none;
    font-size: 12px;
    cursor: pointer;
    border-radius: 3px;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-top: 10px;
    text-decoration: none;

  }
  
  .clinic-btn:hover {
    background-color: #002d5b;
    color: white;
  }
/* السكشن الثالت */
@media (max-width: 768px) {
    .why-choose-us {
      flex-direction: column;
      padding: 40px 20px;
      margin-top: 0;
    }
  
    .why-choose-us__left,
    .why-choose-us__right {
      width: 100%;
      padding: 0;
    }
  
    .why-img {
      width: 100%;
      height: auto;
      margin-top: 20px;
    }
  
    .counter-box {
      position: static;
      margin-top: 20px;
      background: rgba(0, 0, 0, 0.6);
      padding: 15px;
      text-align: center;
    }
  
    .counter-number {
      font-size: 30px;
    }
  
    .counter-labels strong {
      font-size: 14px;
    }
  
    .counter-labels small {
      font-size: 11px;
    }
  
    .why-choose-us__right {
      padding: 20px 0;
      text-align: center;
    }
  
    .why-choose-us__right h2 {
      font-size: 24px;
    }
  
    .why-choose-us__right p {
      font-size: 14px;
      margin-bottom: 30px;
    }
  
    .why-choose-us__right ul {
      padding: 0;
    }
  
    .why-choose-us__right li {
      justify-content: center;
      text-align: left;
    }
  
    .clinic-btn {
      font-size: 12px;
      padding: 10px 18px;
      margin-top: 20px;
    }
  }