body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: #f4f9fb;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem;
  text-align: center;
}

header {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 2rem;
  color: #0077b6;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

p.subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
}

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

.service-badge {
  background: #e0f7fa;
  color: #00796b;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.95rem;
}

form {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2rem;
}

input[type="email"] {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 250px;
}

.button {
  padding: 0.8rem 1.2rem;
  background-color: #0077b6;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.button:hover {
  background-color: #023e8a;
}

.socials {
  margin-top: 2rem;
}

.socials a {
  margin: 0 10px;
  color: #0077b6;
  text-decoration: none;
  font-size: 1.4rem;
}

footer {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #777;
}
