.map-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.map-container img {
  opacity: 0.9;
width: 40%;
}
.flag-container {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-around;
  align-items: center;
  top: 0;
}
.flag {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.flag img {
  width: 5rem;
  height: auto;
  border: 2px solid white;
  border-radius: 10px;
  cursor: pointer; /* Show finger cursor on hover */
}
.flag p {
  margin-top: 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
  color: black;
  background-color: white;
  padding: 0rem 0.5rem;
  border: 2px solid #0D2247; /* CargoFax blue */
  border-radius: 5px;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5); /* Adding text shadow */
  cursor: pointer; /* Show finger cursor on hover */
}
.flag .tooltip-text {
  visibility: hidden;
  width: 120px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%; /* Position the tooltip above the text */
  left: 50%;
  margin-left: -60px; /* Use half of the width to center align */
  opacity: 0;
  transition: opacity 0.3s;
}
.flag:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
/* background-color: #F66000; */
background-color: #0D2247;
position: absolute;	
color: white;
font-size: medium;
opacity: 1;

text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

width: 15rem;
height: 6rem;
top: 110%;
left: 20%;
margin-left: -60px; /* Use half of the width (120/2 = 60), to center the tooltip */
}
h1 {
  font-size: 3.5rem;
  font-weight: bold;
  color: #0D2247; /*CargoFax blue */
}
h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #0D2247; /* CargoFax blue */
}
h3 {
  font-size: 2rem;
  font-weight: bold;
  color: #0D2247; /* CargoFax blue */
}
p {
  font-size: 1.2rem;
}
.full-height-container {
  height: 70vh;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .map-container img {
      width: 100%;
  }
  .flag img {
      width: 6rem;
  }
  .flag p {
      font-size: 1rem;
      padding: 0.1rem 0.1rem;
  }
  h1 {
      font-size: 2.5rem;
  }
  h2 {
      font-size: 1.8rem;
  }
h3 {
      font-size: 1.5rem;
  }
  p {
      font-size: 1.0rem;
  }
.full-height-container {
  height: auto;
}	
}

@media (max-width: 576px) {
  .flag img {
      width: 4rem;
  }
  .flag p {
      font-size: 0.8rem;
      padding: 0.1rem 0.1rem;
  }
  h1 {
      font-size: 1.8rem;
  }
  h2 {
      font-size: 1.5rem;
  }
h3 {
      font-size: 1.0rem;
  }
  p {
      font-size: 0.8rem;
  }
.full-height-container {
  height: auto;
}
}

.separator-container {
display: flex;
align-items: center;
}
.vertical-separator {
width: 1px;
height: 200px; /* Adjust height as needed */
background-color: #ccc;
border: none;
}