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;
}

/* Responsive Nav */
@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;
    padding: 10px 0;
    gap: 10px;
  }

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

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

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

/* ===== About Us Page ===== */
.about-us-page {
  padding: 60px 20px;
  background-color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
}

.about-images {
  flex: 1 1 500px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 600px;
}

.about-images img {
  width: 48%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.about-text {
  flex: 1;
}

.about-text h1 {
  font-size: 32px;
  color: #b30000;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  color: #333;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* About responsive */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    max-width: 350px;
    margin: 0 auto;
  }

  .about-text h1 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 15px;
  }
}

/* ===== 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,
.footer-links,
.footer-map {
  flex: 1;
  min-width: 250px;
}

.footer-info h3,
.footer-links h4 {
  font-size: 20px;
  color: #f5a623;
  margin-bottom: 15px;
}

.footer-info p,
.footer-links a,
.footer-links ul li {
  color: #ddd;
  font-size: 15px;
  line-height: 1.6;
  text-decoration: none;
}

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

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

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

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

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

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

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

  .footer-map iframe {
    height: 250px;
  }
}

.footer-info a {
  color: #ddd;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

