.contact-section {
  padding: 50px 0;
  text-align: center;
  background-color: #f5f5f5; /* Light gray background */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.row {
  display: flex;
  flex-wrap: wrap; /* Allow columns to wrap */
  justify-content: center;
  gap: 20px;
}

.col {
  flex: 1 0 100%; /* Each column takes full width on smaller screens */
  max-width: 100%; /* Prevent columns from growing larger than screen width */
}

.numbers-box {
  padding: 20px;
  background-color: #ffffff; /* White background for the box */
  border: 1px solid #ccc;
  border-radius: 8px;
  text-align: left;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

.numbers-box h3 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #017171; /* Dark teal color for heading */
}

.phone-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.call-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #017171; /* Dark teal color for buttons */
  color: #ffffff;
  font-size: 14px;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s ease-in-out;
}

.call-button:hover {
  background-color: #026b6b; /* Darker teal color on hover */
}

.map {
  position: relative;
  height: 300px;
  background-color: #ffffff; /* White background for the map */
  border: 1px solid #ccc;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); /* Soft shadow */
}

.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-location {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 14px;
  color: #777;
}

@media (min-width: 768px) {
  .row {
    gap: 40px; /* Increase gap between columns on larger screens */
  }

  .col {
    flex: 1 0 50%; /* Each column takes half the width on medium screens */
    max-width: 50%;
  }
}

@media (min-width: 992px) {
  .col {
    flex: 1 0 33.33%; /* Each column takes one-third of the width on larger screens */
    max-width: 33.33%;
  }
}
.header-content h3 {
  text-align: right;
}
.dropdown-menu {
  text-align: right;
}
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
}
