/* Grid-based visa service cards for mobile */
@media (max-width: 768px) {
  /* Services section container */
  .services-right {
    padding: 0 10px;
  }
  
  /* Grid layout for services */
  .services-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 15px;
    padding: 1.5rem 0;
  }
  
  /* Card styling */
  .service-item {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%;
    position: relative;
    overflow: hidden;
  }
  
  .service-item:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #0056b3, #0088cc);
  }
  
  .service-item:active {
    transform: scale(0.98);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  
  /* Flag positioning */
  .service-flag {
    display: block;
    margin: 0 auto 10px;
  }
  
  .service-flag img {
    width: 40px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  }
  
  /* Icon styling */
  .service-icon-small {
    background: linear-gradient(135deg, #0056b3, #0088cc);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
  }
  
  .service-icon-small i {
    color: white;
    font-size: 20px;
  }
  
  /* Content styling */
  .service-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
  }
  
  .service-content h4 {
    font-size: 15px;
    margin: 8px 0;
    font-weight: 600;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .service-content p {
    font-size: 12px;
    line-height: 1.4;
    color: #666;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  /* Ensure services header is also mobile-friendly */
  .services-header h2 {
    font-size: 24px;
    text-align: center;
  }
  
  .services-header p {
    font-size: 14px;
    text-align: center;
    padding: 0 15px;
  }
}