body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  background: #f4f4f4;
  color: #333;
}

/* NAVBAR */
.navbar {
  background: #fff;
  padding: 1rem 0;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar ul {
  display: flex;
  justify-content: center;
  gap: 2rem;
  list-style: none;
  padding: 0;
}
.navbar a {
  color: #333;
  font-weight: 500;
  text-decoration: none;
}

/* HERO SECTION */
.hero {
  text-align: center;
  background: linear-gradient(120deg, #ffcc00, #ff9900);
  color: #000;
  padding: 5rem 2rem;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.btn {
  background: #000;
  color: #fff;
  padding: 0.9rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}
.btn:hover {
  background: #333;
}

/* CONTENT */
.container {
  max-width: 1000px;
  margin: -3rem auto 3rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.container.small {
  margin-top: 2rem;
}

h2 {
  color: #ff9900;
  margin-bottom: 1rem;
}

/* SERVICES GRID */
.grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card {
  background: #fffaf0;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

/* CONTACT */
.contact-list {
  list-style: none;
  padding: 0;
}
.contact-list li {
  margin: 0.5rem 0;
  font-size: 1.1rem;
}
.contact-list a {
  color: #ff9900;
  font-weight: 700;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 1.5rem;
  color: #777;
  font-size: 0.9rem;
}
footer a {
  color: #ff9900;
}
