.logo {
  margin-left: 70px;
}

#about h2 {
  font-weight: bold;
  font-size: 40px;
  color: white;
  text-shadow: 1px 1px 3px rgba(227, 188, 120, 0.4);
}

#about p {
  font-size: 1.1em;
  line-height: 1.6;
  text-align: center;
  margin: 0 20px;
}

.button {
  background-color: #ead8b1;
  font-weight: bolder;
}

.nav-link {
  color: #ead8b1;
  /* Customize nav link color */
  font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
    "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
}

.nav-link:hover {
  color: #ffffff;
  /* Customize hover color */
}

.map-container {
  height: 450px;
  /* Set height of the map */
  width: 100%;
  /* Full width */
  border-radius: 20px;
  overflow: hidden;
  /* Prevents overflow of the iframe */
}

iframe {
  border: 0;
  /* Remove border around iframe */
  height: 100%;
  /* Full height of the container */
  width: 100%;
  /* Full width of the container */
}

@media screen and (max-width: 500px) {
  .logo {
    margin-left: 20px;
  }
}

.video-wrapper {
  height: 220px;
}


.loader {
    border: 8px solid #f3f3f3; /* Light gray background */
    border-top: 8px solid #e6e31b; /* Blue color for the spinner */
    border-radius: 50%;
    width: 80px; /* Loader width */
    height: 80px; /* Loader height */
    animation: spin 1s linear infinite; /* Animation for spinning effect */
    position: relative; /* Position it as needed */
    top: 10%; /* Center vertically */
    left: 40%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjust position */
    z-index: 9999; /* Ensure it appears above other elements */
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

