.seccontctus-section {
  background-color: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  max-width: 900px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

.seccontctus-heading {
  text-align: center;
  font-size: 22px;
  margin-bottom: 20px;
  color: #037377;
}

.seccontctus-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.seccontctus-box {
  flex: 1;
  text-align: center;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(255, 200, 18, 0.2); /* Light glow around the cards */
}

.seccontctus-country-name {
  font-size: 18px;
  color: #037377;
  margin-bottom: 10px;
}

.seccontctus-link {
  color: #007BFF;
  text-decoration: none;
  font-size: 16px;
  display: block;
  margin-bottom: 10px;
}

.seccontctus-link:hover {
  text-decoration: underline;
}

.seccontctus-box p {
  font-size: 14px;
  margin: 5px 0;
}

.seccontctus-box .seccontctus-icon {
  font-weight: bold;
}

.seccontctus-map-image {
  max-width: 60%; /* Adjust the size as needed */
  max-height: 150px; /* Optional, to maintain consistent height */
  height: auto;
  margin-top: 10px;
  border-radius: 4px;
}

@media (max-width: 768px) {
  .seccontctus-container {
    flex-direction: column;
    gap: 15px;
  }

  .seccontctus-box {
    max-width: 100%;
  }
}