.flag-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: 2rem;
  background-color: #0c4080;
  border-radius: 10px;
}

.flag-card {
  transition: transform 0.3s, box-shadow 0.3s;
  border: none;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  width: 200px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.flag-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.flag-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
}

.flag-card a {
  text-decoration: none;
  color: #007bff;
  font-weight: 500;
  padding: 0.5rem;
  display: block;
}

.flag-card a:hover {
  color: #0056b3;
}

.header {
  background-color: #007bff;
  color: white;
  padding: 1rem;
  border-radius: 10px 10px 0 0;
  text-align: center;
}

.description {
  padding: 1.5rem;
  text-align: center;
  color: #333;
}

.view-all-btn {
  display: block;
  margin: 2rem auto;
  text-align: center;
}

