:root {
  --primary: #F23C3B;
  --secondary: #6EE0C7;
  --background: #9FE5DD;
  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Inter', sans-serif;
}

body {
  margin: 0;
  font-family: var(--body-font);
  background-color: white;
  color: #222;
}

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

.logo {
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: bold;
  color: var(--primary);
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

nav a {
  text-decoration: none;
  color: #333;
}

.hero {
  background-color: var(--secondary);
  text-align: center;
  padding: 80px 20px;
  color: #fff;
}

.btn-primary {
  background: var(--primary);
  color: white;
  padding: 12px 24px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}

.services {
  padding: 60px 20px;
  background-color: #f9f9f9;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-around;
}

.service {
  flex: 1 1 300px;
  background: white;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 12px 18px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
}

footer {
  background: #eee;
  text-align: center;
  padding: 20px;
  font-size: 14px;
}
