:root {
  --primary: #1f7a63;
  --secondary: #2fbf9f;
  --accent: #ffb703;
  --dark: #1a1a1a;
  --light: #f9fdfc;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}
body {
  background: var(--light);
  color: var(--dark);
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}

.logo img {
  width: 100%;
  max-width: 280px; /* desktop size */
  height: auto;
}

.nav button {
  background: var(--accent);
  border: none;
  padding: 10px 18px;
  border-radius: 6px;
  color: white;
  cursor: pointer;
  font-weight: 600;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 40px 25px 0 25px;
}

.hero-text h1 {
  font-size: 40px;
  color: var(--primary);
}

.hero-text p {
  margin: 15px 0;
  color: #555;
}

.hero-text button {
  background: var(--accent);
  border: none;
  padding: 15px 25px;
  color: white;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

.hero-img img {
  width: 100%;
  border-radius: 20px;
}

.badges {
  margin-top: 10px;
  margin-bottom: 10px;
}
.badges span {
  background: var(--secondary);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  margin-right: 5px;
  font-size: 12px;
}

.section {
  padding: 60px 40px;
}
.section h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--primary);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.step {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  text-align: center;
}

.card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.stars {
  color: gold;
}

.order-box {
  background: white;
  padding: 30px;
  border-radius: 20px;
  max-width: 600px;
  margin: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

input,
textarea,
select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
}

input[type='date'] {
  width: 100%;
  max-width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.submit {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  padding: 15px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

.pricing {
  text-align: center;
  font-weight: 600;
  margin-bottom: 15px;
}

footer {
  background: var(--primary);
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 20px 40px;
  flex-wrap: wrap;
}

.sticky {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: var(--primary);
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 10px 20px;
  align-items: center;
}

.sticky button {
  background: var(--accent);
  border: none;
  padding: 10px 20px;
  color: white;
  border-radius: 5px;
}

.infotext {
  font-size: 10px;
  margin-bottom: 15px;
}

.mar-bot-0 {
  margin-bottom: 0 !important;
}
.mar-bot-5 {
  margin-top: -5px;
}
small {
  display: block;
  text-align: center;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .logo img {
    max-width: 220px;
  }
}

@media (max-width: 480px) {
  .logo img {
    max-width: 200px;
  }
}
