
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0f0f0f;
  color: #f5f5f5;
}
header {
  background-color: #111;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  height: 40px;
}
.header-text {
  text-align: center;
  margin: 40px auto;
}
.header-text h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.header-text p {
  font-size: 1.2rem;
  color: #bbb;
}
.hero-image {
  width: 100%;
  height: auto;
  max-height: 200px;
  object-fit: cover;
}
.cta {
  margin-top: 20px;
  text-align: center;
}
.cta a {
  display: inline-block;
  margin: 10px;
  padding: 12px 24px;
  background-color: #00c37a;
  color: #000;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
}
.section {
  padding: 60px 20px;
  max-width: 1000px;
  margin: auto;
}
.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.service-card {
  background: linear-gradient(to bottom right, #1a1a1a, #222);
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.7);
}
.numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}
.number-box {
  text-align: center;
}
.number-box h3 {
  font-size: 2rem;
  color: #00c37a;
}
form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
form input, form textarea {
  width: 100%;
  padding: 14px;
  background-color: #1a1a1a;
  border: 1px solid #333;
  color: #f5f5f5;
  border-radius: 8px;
  font-size: 1rem;
}
form button {
  padding: 14px;
  background-color: #00c37a;
  color: #000;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
form button:hover {
  background-color: #00e68c;
}
footer {
  background-color: #111;
  text-align: center;
  padding: 30px;
  font-size: 0.9rem;
  color: #777;
}
footer a {
  color: #00c37a;
  text-decoration: none;
}
@media (max-width: 480px) {
  .header-text h1 {
    font-size: 2rem;
  }
  .section {
    padding: 40px 16px;
  }
  form input, form textarea {
    padding: 12px;
    font-size: 0.95rem;
  }
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('hero.jpg') no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-text {
  color: #ffffff;
  z-index: 2;
}
.hero-text h1 {
  font-size: 3rem;
  margin: 0;
}
.hero-text p {
  font-size: 1.25rem;
  margin-top: 12px;
  color: #ccc;
}
