* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #0f0f0f;
  color: #f2f2f2;
}

.main-header {
  background: #111;
  border-bottom: 3px solid #ff7a00;
  padding: 20px;
  text-align: center;
}

.logo {
  font-size: 42px;
  font-weight: 900;
  color: #ff7a00;
  letter-spacing: 4px;
  text-shadow: 0 0 12px rgba(255, 122, 0, 0.6);
}

nav {
  margin-top: 15px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  margin: 0 14px;
}

nav a:hover {
  color: #ff7a00;
}

.hero {
  min-height: 520px;
  background:
    linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.8)),
    url("https://images.unsplash.com/photo-1487754180451-c456f719a1fc?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  padding: 40px;
}

.hero h1 {
  font-size: 48px;
  color: #ff7a00;
  margin-bottom: 10px;
}

.hero p {
  font-size: 20px;
  max-width: 650px;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  background: #ff7a00;
  color: #111;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.btn:hover {
  background: #ff9a2f;
}

.container {
  max-width: 1000px;
  margin: 45px auto;
  padding: 20px;
}

.container h2,
.page-title {
  color: #ff7a00;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.service-card,
.form-card,
.staff-card {
  background: #1a1a1a;
  border: 1px solid #333;
  border-top: 4px solid #ff7a00;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 5px 18px rgba(0,0,0,0.45);
}

.service-card h3 {
  color: #ff7a00;
}

.form-card {
  max-width: 750px;
  margin: auto;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  background: #111;
  color: white;
  border: 1px solid #444;
  padding: 14px;
  border-radius: 8px;
  font-size: 15px;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

button {
  background: #ff7a00;
  color: #111;
  border: none;
  padding: 15px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
}

button:hover {
  background: #ff9a2f;
}

#status {
  font-weight: bold;
}

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  margin-top: 30px;
}

.staff-card {
  text-align: center;
  transition: 0.25s;
}

.staff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(255,122,0,0.25);
}

.staff-card img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 4px solid #ff7a00;
  object-fit: cover;
}

.staff-card h3 {
  color: #ff7a00;
}

.rank,
.role,
.phone {
  font-weight: bold;
}

footer {
  background: #111;
  border-top: 3px solid #ff7a00;
  text-align: center;
  padding: 18px;
  margin-top: 45px;
}

@media (max-width: 650px) {
  nav a {
    display: block;
    margin: 10px 0;
  }

  .hero {
    min-height: 420px;
    padding: 25px;
  }

  .hero h1 {
    font-size: 34px;
  }
}