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

header {
  background: #b30000; /* red tone */
  color: white;
  padding: 1rem 2rem;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2rem;
}

nav {
  margin-top: 0.5rem;
}

nav a {
  color: white;
  margin: 0 1rem;
  text-decoration: none;
  font-weight: bold;
}

.hero {
  background: url('https://picsum.photos/1600/500?tech') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 6rem 2rem;
}

.hero h2 {
  font-size: 2.5rem;
}

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

.services {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.service-card {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  width: 280px;
  text-align: center;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 1rem;
}

form input,
form textarea {
  width: 100%;
  margin: 0.5rem 0;
  padding: 0.7rem;
  border-radius: 5px;
  border: 1px solid #ccc;
}

form button {
  background: #b30000;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 5px;
  cursor: pointer;
}

form button:hover {
  background: #800000;
}
