body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #0e0e0e;
  color: #eee;
}

header {
  background: #1b1b1b;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header h1 {
  margin: 0;
  color: #ff4747;
}

nav a {
  color: #ddd;
  margin-left: 1rem;
  text-decoration: none;
  font-weight: 500;
}

nav a.active, nav a:hover {
  color: #ff4747;
}

main {
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
}

#services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.service-card {
  background: #1b1b1b;
  border: 1px solid #333;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  transition: all 0.2s;
}

.service-card:hover {
  border-color: #ff4747;
  transform: translateY(-4px);
}

.service-card h3 {
  margin: 0.5rem 0;
  color: #fff;
}

.service-card p {
  font-size: 0.9rem;
  color: #aaa;
}

.service-card a {
  display: inline-block;
  margin-top: 0.8rem;
  color: #ff4747;
  text-decoration: none;
  font-weight: bold;
}

.doc-list li {
  margin: 0.6rem 0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 500px;
}

input, textarea, button {
  padding: 0.8rem;
  border-radius: 6px;
  border: none;
  font-size: 1rem;
}

input, textarea {
  background: #222;
  color: #eee;
}

button {
  background: #ff4747;
  color: white;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.2s;
}

button:hover {
  background: #ff6161;
}

footer {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #222;
  color: #777;
  font-size: 0.9rem;
}
