
body {
  margin: 0;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: #ffffff;
  color: #111111;
  line-height: 1.6;
}
h1, h2 {
  margin: 0 0 0.5em 0;
}
p {
  margin: 0 0 1em 0;
}
.hero {
  text-align: center;
  padding: 80px 20px;
  background: #f9f9f9;
}
.hero .tagline {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #555;
  margin-bottom: 20px;
}
.hero .intro {
  max-width: 600px;
  margin: 0 auto 20px auto;
  color: #444;
  font-size: 1.1rem;
}
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 60px 20px;
  background: #ffffff;
}
.service-card {
  background: #f3f3f3;
  padding: 30px;
  border-radius: 15px;
  flex: 1 1 250px;
  max-width: 300px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.service-card .price {
  font-weight: bold;
  margin-top: 15px;
}
.portfolio {
  padding: 80px 20px;
  text-align: center;
  background: #f9f9f9;
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.portfolio-item {
  background: #ddd;
  border-radius: 12px;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-weight: bold;
}
.contact {
  padding: 80px 20px;
  background: #ffffff;
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}
.contact form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact input,
.contact textarea,
.contact select {
  padding: 12px 15px;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 1rem;
  width: 100%;
  box-sizing: border-box;
}
.contact button {
  padding: 15px;
  border: none;
  border-radius: 12px;
  background: #111;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s;
}
.contact button:hover {
  background: #333;
}
footer {
  text-align: center;
  padding: 30px 20px;
  background: #f3f3f3;
  color: #555;
  font-size: 0.9rem;
}
