body {
  background-color: #ffffff;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}

/* Top nav bar */
.nav {
  display: flex;
  justify-content: center;
  background-color: #6d6d6d;
  padding: 10px;
  gap: 10px;
}
.nav a button {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  background-color: #ddd;
  border: none;
  border-radius: 0;
  transition: background-color 0.3s ease;
}
.nav a button:hover {
  background-color: #ff6c20;
}

/* Section nav bars */
.nav-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: #6d6d6d;
  padding: 10px;
  gap: 10px;
}
.nav-btn {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  background-color: #ddd;
  border: none;
  border-radius: 0;
  transition: background-color 0.3s ease;
}
.nav-btn:hover {
  background-color: #ff6c20;
}

/* Custom dropdowns */
.sacountry-bar {
  display: flex;
  justify-content: center;
  background-color: #6d6d6d;
  padding: 5px;
  gap: 10px;
  flex-wrap: nowrap;
}
.country-bar {
  display: flex;
  justify-content: center;
  background-color: #6d6d6d;
  padding: 10px;
  gap: 10px;
  flex-wrap: nowrap;
}

/* Custom dropdowns */
.custom-dropdown {
  position: relative;
  display: inline-flex;
  width: 250px;
  text-align: center;
  margin: 0;
  box-sizing: border-box;
}
.custom-dropdown .selected {
  padding: 10px;
  font-size: 16px;
  cursor: pointer;
  background-color: #ddd;
  border: none;
  border-radius: 0;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}
.custom-dropdown .selected:hover {
  background-color: #ff6c20;
}
.custom-dropdown .selected .outline-img {
  height: 40px;
  width: auto;
  margin-right: 10px;
  transition: opacity 0.3s ease;
}
.custom-dropdown#colombia .selected:hover .outline-img {
  opacity: 0;
}
.custom-dropdown#colombia .selected:hover .highlight-img {
  opacity: 1;
}
.custom-dropdown .selected .highlight-img {
  position: absolute;
  top: 10px;
  left: 10px;
  height: 40px;
  width: auto;
  margin-right: 10px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.custom-dropdown .selected img {
  height: 20px;
  width: auto;
  margin-right: 10px;
}
.custom-dropdown .options {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #ddd;
  border: 1px solid #ddd;
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1;
}
.custom-dropdown .options.show {
  display: block;
}
.custom-dropdown .option {
  display: flex;
  align-items: center;
  padding: 5px;
  cursor: pointer;
}
.custom-dropdown .option:hover {
  background-color: #f0f0f0;
}
.custom-dropdown .option img {
  height: 20px;
  width: auto;
  margin-right: 10px;
}

/* Logo */
.logo {
  margin-top: 70px;
}

/* Page text */
.content {
  margin-top: 20px;
  font-size: 16px;
}

/* Grey section */
.grey-section {
  background-color: #6d6d6d;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Specific styling for the last grey-section to center bottom-column */
.grey-section:last-child {
  justify-content: center;
}

/* Light grey section */
.lightgrey-section {
  background-color: #ddd;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* Text column */
.text-column {
  flex: 1;
  background-color: #ddd;
  padding: 10px;
  border-radius: 0;
  margin-right: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 0;
}

/* Bottom column */
.bottom-column {
  flex: 0.4;
  background-color: #ddd;
  padding: 10px;
  border-radius: 0;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 0;
  text-align: center;
}
.bottom-column p {
  margin: 0;
  width: 100%;
}

/* Image column */
.image-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

/* Image row */
.image-row {
  display: flex;
  margin-bottom: 10px;
  border: none;
  justify-content: center;
}

/* Logo row */
.logo-row {
  justify-content: center;
}

/* Image styling with tooltip */
.image-row img {
  max-width: 200px;
  height: auto;
  margin: 5px;
  position: relative !important; /* Override inline styles */
  cursor: pointer;
}
.image-row img::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 14px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 10;
  pointer-events: none;
}
.image-row img:hover::after {
  opacity: 1;
  visibility: visible;
}

/* Responsive design */
@media (max-width: 600px) {
  .grey-section {
    flex-direction: column;
    align-items: center;
  }
  .grey-section:last-child {
    justify-content: center;
  }
  .text-column {
    margin-bottom: 20px;
    margin-right: 0;
    justify-content: flex-start;
  }
  .bottom-column {
    flex: 1;
    margin: 0;
    padding: 10px;
    justify-content: flex-start;
  }
  .image-column {
    align-items: center;
  }
  .image-row {
    flex-direction: column;
    align-items: center;
  }
  .image-row img {
    margin: 5px 0;
  }
  .nav {
    flex-direction: column;
    align-items: center;
  }
  .nav a {
    margin: 5px 0;
  }
  .nav-bar {
    flex-direction: column;
    align-items: center;
  }
  .nav-btn {
    margin: 5px 0;
  }
  .sacountry-bar {
    flex-direction: column;
    align-items: center;
  }
  .country-bar {
    flex-direction: column;
    align-items: center;
  }
  .custom-dropdown {
    width: 100%;
    margin: 5px 0;
  }
}