/* General Reset */
* {
  margin: 0;
  padding: 0;
    box-sizing: border-box;
      scroll-behavior: smooth;


}

body {
  font-family: Arial, sans-serif;
  background-color: #000;
  line-height: 1.6;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  gap: 2rem;
  color: #fff;
}

.contact-section {
  padding: 2rem 0;
}

.contact-section-title {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.info-item {
  flex-basis: 50%;
}

.hours-of-service h3 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  margin-top: 2rem;
}

.hours-of-service ul {
  list-style-type: none;
  padding-left: 0;
}

.map-container {
  position: relative;
}

.map-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.map-iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.map-link {
  text-decoration: none;
  color: inherit;
}

.map-link .map-image {
  transition: transform 0.3s ease;
}

.map-link:hover .map-image {
  transform: scale(1.05);
}
/* Footer Styling */
.footer-section {
  background-color: #0A192F;
  color: white;
}

.footer-logo {
  max-width: 100%;
  height: auto;
}

.footer-social-link {
  display: inline-block;
  transition: transform 0.3s ease;
}

.footer-social-link:hover {
  transform: scale(1.8);
}

.footer-links {
  font-size: 1rem;
}

.footer-link {
  text-decoration: none;
  color: inherit;
}

.footer-copyright {
  margin-top: 2rem;
}
