* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  background-color: #f0f0f0;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background-color: #333;
  color: white;
  height: 70px;
  flex-wrap: wrap;
}

.nav-brand a {
  font-size: 2em;
  text-decoration: none;
  color: #ffffff;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-menu li {
  margin-left: 10px;
}

.nav-menu a {
  text-decoration: none;
  color: white;
  font-size: 1.2em;
  transition: color 0.3s;
}

.nav-menu a:hover {
  color: #f0a500;
}

.nav-menu .dropdown {
  cursor: pointer;
}

.nav-menu .dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #444;
  padding: 10px 0;
  margin: 0;
}

.nav-menu .dropdown:hover .dropdown-menu {
  display: block;
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    height: auto;
    padding: 10px;
  }

  .navbar .nav-menu {
    flex-direction: column;
    width: 100%;
    background-color: #333;
    padding: 10px 0;
    border-top: 1px solid #444;
  }

  .navbar .nav-menu.active {
    display: flex;
  }

  .navbar .menu-toggle {
    display: block;
  }

  .navbar .nav-menu li {
    margin: 10px 0;
    text-align: center;
  }
}

/* General Styles */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}

.contact-page {
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
}

.contact-header {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 15px;
  font-size: 1.5em;
}

.contact-details,
.location-map,
.contact-footer {
  background: white;
  margin: 10px 0;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 15px;
}

/* Map Styles */
.location-map iframe {
  width: 100%;
  height: 200px; /* Scales proportionally */
  border: none;
}

/* Footer Link */
.contact-footer a {
  color: #ff6600;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {

  .contact-details p,
  .contact-footer p {
    font-size: 0.9em;
    line-height: 1.4;
  }

  .location-map iframe {
    height: 150px; /* Adjust height for smaller screens */
  }
}

@media (max-width: 480px) {


  .contact-details p,
  .contact-footer p {
    font-size: 0.8em;
  }

  .location-map iframe {
    height: 120px;
  }
}


/* Footer */
.footer {
  text-align: center;
  background-color: #333;
  color: white;
  padding: 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1;
  margin: 10px;
  min-width: 200px;
}

.footer h4 {
  margin-bottom: 15px;
  color: #ff6b00;
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  text-decoration: none;
  color: #ffffff;
}

.footer ul li a:hover {
  text-decoration: underline;
  color: #f0a500;
}
@media (max-width: 768px) {
  .footer-columns {
    flex-direction: column;
    gap: 30px;
  }

  .footer-section {
    margin-bottom: 20px;
  }
}

