
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

body {
  background: #fff;
  color: #111;
  line-height: 1.6;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 2rem;
  background: #fff;
  border-bottom: 1px solid #e5e5e5;
}

.logo-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  height: 48px;
}

header h1 {
  font-size: 1.25rem;
  line-height: 1.2;
}

header h1 span {
  font-size: 0.875rem;
  color: #6b7280;
}

.contact-link {
  text-decoration: none;
  color: #111;
  font-weight: 600;
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 60px 20px;
  background-color: #f5f5f5;
}

.hero-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  margin-bottom: 20px;
  border-radius: 12px;
}


.hero h2 {
  font-size: 2.75rem;
  margin-bottom: 0.5rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
}

.btn {
  display: inline-block;
  background: #1f2937;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 600;
}

.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 4rem 2rem;
  background: #f9fafb;
  text-align: center;
}

.service {
  max-width: 280px;
}

.service img {
  height: 50px;
  margin-bottom: 1rem;
}

.service h3 {
  margin-bottom: 0.5rem;
}

.contact {
  padding: 3rem 2rem;
  text-align: center;
}

.contact form {
  max-width: 600px;
  margin: auto;
  display: grid;
  gap: 1rem;
}

.contact input, .contact textarea {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 0.375rem;
}

.contact button {
  background: #1f2937;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  font-weight: 600;
}

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