* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: #f6f1e8;
  background: #0b3d2e;
}

a {
  color: inherit;
  text-decoration: none;
}

.navbar {
  background: #1a6b52;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffd27a;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 8px;
}

.nav-links a:hover {
  background: rgba(255,255,255,0.08);
}

.map-btn {
  background: #ffb347;
  color: #111;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  border-radius: 10px;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
}

/* =========================
   MAIN
========================= */
.careers-main {
  padding: 42px 20px 72px;
}

.careers-form-section {
  max-width: 760px;
  margin: 0 auto;
  background: rgba(20, 92, 67, 0.96);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22);
}

.careers-form-section h2 {
  color: #ffd27a;
  text-align: center;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 10px;
}

.careers-form-section p {
  text-align: center;
  color: #f6f1e8;
  margin-bottom: 22px;
}

.careers-form {
  display: grid;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

label {
  display: block;
  font-weight: 700;
  color: #f6f1e8;
  margin-bottom: 8px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #0e4a36;
  color: #fff;
  font-size: 1rem;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

textarea {
  resize: vertical;
}

button {
  background: #ffb347;
  color: #111;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  transition: 0.2s ease;
}

button:hover {
  filter: brightness(1.05);
}

/* =========================
   FOOTER
========================= */
.site-footer {
  padding: 24px 20px 34px;
  text-align: center;
  color: none;
}

.footer-small {
  font-size: 0.85rem;
  opacity: 0.82;
  margin-top: 6px;
}

/* =========================
   MOBILE
========================= */
@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    border-radius: 10px;
    padding: 8px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
  }

  .navbar {
    position: relative;
    padding: 14px 16px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    right: 16px;
    background: #1a6b52;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    border-radius: 12px;
    min-width: 220px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.25);
    z-index: 999;
  }

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

  .nav-links li {
    width: 100%;
    list-style: none;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 10px 12px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    padding: 14px 16px;
    grid-template-columns: auto 1fr auto;
  }

  .top-sign {
    font-size: 1.1rem;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .map-link {
    padding: 8px 10px;
    font-size: 0.85rem;
  }

  .careers-main {
    padding: 28px 16px 52px;
  }

  .careers-form-section {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .careers-form-section h2 {
    font-size: 1.7rem;
  }
}