body {
  margin: 0;
  font-family: Arial, sans-serif;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  background-color: #b30000;
}

.logo img {
  height: 150px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}

.nav-links li a:hover {
  text-decoration: underline;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  color: white;
  border: none;
  cursor: pointer;
}

@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    align-items: center;
  }

  .logo img {
    height: 100px;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
    padding: 10px 20px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #b30000;
    gap: 10px;
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    text-align: center;
  }

  .nav-links li a {
    font-size: 18px;
    padding: 8px 0;
    display: block;
  }

    .contact-info-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .contact-map {
    width: 100%;
    padding: 0;
  }

  .contact-map iframe {
    width: 100vw;
    height: 300px;
    border-radius: 0;
    margin: 0 auto;
  }
}


/* Contact Page */
.contact-hero {
  background-color: #fff6f1;
  padding: 60px 20px;
  text-align: center;
}

.contact-hero-text h1 {
  font-size: 36px;
  color: #b30000;
  margin-bottom: 15px;
}

.contact-hero-text p {
  font-size: 16px;
  color: #444;
  max-width: 700px;
  margin: 0 auto;
}

.contact-info {
  background: #fff;
  padding: 50px 20px;
}

.contact-info-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: flex-start;
}

.contact-details {
  flex: 1;
  min-width: 280px;
}

.contact-details h2 {
  font-size: 24px;
  color: #b30000;
  margin-bottom: 15px;
}

.contact-details p {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.contact-details a {
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #b30000;
}

.contact-map {
  flex: 1;
  min-width: 300px;
}

.contact-map iframe {
  width: 100%;
  height: 250px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 768px) {
  .contact-info-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .contact-map iframe {
    height: 250px;
    width: 100%;
  }
}


/* Footer */
.footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 60px 30px 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.footer-info {
  flex: 1;
  min-width: 250px;
}

.footer-info h3 {
  font-size: 24px;
  color: #f5a623;
  margin-bottom: 10px;
}

.footer-info p {
  font-size: 15px;
  line-height: 1.6;
}

.footer-info a {
  color: #f5a623;
  text-decoration: none;
}

.footer-info a:hover {
  text-decoration: underline;
}

.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links h4 {
  color: #f5a623;
  font-size: 18px;
  margin-bottom: 10px;
}

.footer-links ul {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  font-size: 14px;
  color: #ccc;
  border-top: 1px solid #333;
}

.footer-bottom a {
  color: #f5a623;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* Footer Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-info,
  .footer-links {
    width: 100%;
  }
}
