body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f2fefe;
  color: #333;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

h1, h2 {
  margin-bottom: 10px;
}

.logo {
  max-width: 320px;
  display: block;
  margin: 0 auto 15px auto;
}

.navbar {
  background-color: #b30000;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  flex-wrap: wrap;
}

.nav-logo {
  color: white;
  font-size: 1.5em;
  font-weight: bold;
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.nav-links li {
  position: relative;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  display: block;
}

.nav-links a:hover {
  background-color: #800000;
  border-radius: 4px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background-color: #d32f2f;
  top: 35px;
  left: 0;
  min-width: 200px;
  z-index: 1000;
  border-radius: 0 0 6px 6px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.dropdown-menu li {
  border-bottom: 1px solid #a00000;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  padding: 10px;
  font-size: 0.95em;
}

.nav-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    background-color: #b30000;
    border-radius: 4px;
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    display: none;
    background-color: #d32f2f;
    padding-left: 10px;
    box-shadow: none;
  }

  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

header {
  background-color: #b30000;
  color: white;
  padding: 40px 0;
  text-align: center;
}

section {
  padding: 30px 0;
}

.intro p,
.locations ul,
footer p {
  font-size: 1.1em;
}

.locations ul {
  list-style: none;
  padding-left: 0;
}

.locations li {
  margin-bottom: 20px;
  line-height: 1.6;
}

/* ---------- Forms ---------- */
.job-form {
  margin-top: 30px;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.job-form div {
  margin-bottom: 20px;
}

.job-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #333;
}

.job-form input[type="text"],
.job-form input[type="email"],
.job-form input[type="tel"],
.job-form input[type="date"],
.job-form input[type="file"],
.job-form select,
.job-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1em;
  box-sizing: border-box;
}

.job-form button {
  background-color: #b30000;
  color: white;
  padding: 12px 20px;
  font-size: 1em;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.job-form button:hover {
  background-color: #800000;
}


/* Promo Section */
.promo-section {
  background-color: #f2fefe;
  padding: 30px 0;
}

.promo-container {
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 60px;
}

.promo-column {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.promo-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.promo-box img {
  width: 360px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.badge {
  background-color: #b30000;
  color: white;
  font-weight: bold;
  padding: 8px 16px;
  font-size: 18px;
  border-radius: 6px;
  margin-bottom: 10px;
  text-align: center;
}

@media (max-width: 768px) {
  .promo-container {
    flex-direction: column;
    align-items: center;
  }

  .promo-column {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .promo-box img {
    width: 90%;
    max-width: 340px;
  }
}

footer {
  background-color: #590000;
  color: white;
  text-align: center;
  padding: 20px 0;
}
