/* Mobile fixes for services section */
@media (max-width: 768px) {
  /* Services section layout */
  .services-content {
    flex-direction: column;
  }
  
  .services-left, .services-right {
    width: 100%;
  }
  
  /* Service items */
  .service-item {
    background: white;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 15px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
  }
  
  .service-icon-small {
    background: #0056b3;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
  }
  
  .service-icon-small i {
    color: white;
    font-size: 18px;
  }
  
  .service-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
  }
  
  .service-flag {
    margin-right: 8px;
  }
  
  .service-flag img {
    width: 20px;
    border-radius: 3px;
  }
  
  .service-content p {
    font-size: 14px;
    line-height: 1.4;
    color: #555;
  }
  
  /* Services header */
  .services-header h2 {
    font-size: 24px;
  }
  
  .services-header p {
    font-size: 14px;
  }
}