/* International Legal Services page styles extracted from template */

.hero-section {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.3)), url('../img/international.jpg') center/cover no-repeat;
  height: 60vh;
  color: white;
  display: flex;
  align-items: center;
}

.service-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none;
  border-radius: 10px;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.feature-icon {
  font-size: 3rem;
  color: #6610f2;
  margin-bottom: 1rem;
}

.section-title {
  position: relative;
  margin-bottom: 3rem;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, #6610f2, #0d6efd);
  border-radius: 2px;
}

.expertise-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-radius: 12px;
  padding: 1.5rem;
  height: 100%;
  transition: all 0.3s ease;
}

.expertise-card:hover {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  transform: translateY(-3px);
}

.advantage-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 12px;
  background: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.cta-section {
  background: linear-gradient(135deg, #6610f2 0%, #0d6efd 100%);
  color: white;
  border-radius: 20px;
  padding: 3rem 2rem;
  margin: 3rem 0;
}

footer {
  background-color: #f8f9fa;
  margin-top: 4rem;
}