
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: #333;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
header {
  background: #fff;
  border-bottom: 1px solid #eee;
}
.logo {
  height: 50px;
  margin: 10px 0;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
  justify-content: flex-end;
}
nav a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
.hero {
  background: linear-gradient(90deg, #c20055, #f28aa7);
  color: white;
  padding: 80px 20px;
  text-align: center;
}
.hero h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}
.hero p {
  font-size: 1.1em;
  margin-bottom: 1.5em;
}
.cta-button {
  background: white;
  color: #c20055;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 60px 0;
}
.service {
  flex: 1 1 calc(25% - 20px);
  text-align: center;
}
.service img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}
footer {
  background: #222;
  color: #eee;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
}
