/* Modern Flag Carousel Styles */
.flag-carousel-section {
  background: #f8f9fa;
  padding: 40px 0 30px 0;
}
.flag-carousel-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
  color: #222;
}
.flag-carousel.owl-carousel .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}
.flag-carousel .flag-img {
  width: 200px;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.09);
  margin-bottom: 10px;
  transition: transform 0.2s;
}
.flag-carousel .flag-img:hover {
  transform: scale(1.08);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.flag-carousel .flag-label {
  font-size: 1rem;
  color: #333;
  text-align: center;
}
