body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #333;
  background: #fff;
}
header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 7vw;
  background: #f7c6c7;
  box-shadow: 0 2px 8px #f7e4e5;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.4em;
  font-weight: bold;
  color: #d45d79;
}
.logo img {
  width: 60px;
  height: 32px;
  display: block;
}
nav a {
  color: #d45d79;
  text-decoration: none;
  margin-left: 2em;
  font-weight: 500;
  transition: color 0.2s;
}
nav a:hover {
  color: #b72851;
}
.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 40px 7vw 20px 7vw;
  background: linear-gradient(90deg, #f7c6c7 60%, #fff 100%);
}
.hero-content {
  max-width: 540px;
}
.hero h1 {
  font-size: 2.5em;
  color: #b72851;
  margin-bottom: 0.2em;
}
.hero .highlight {
  color: #fff;
  background: #b72851;
  border-radius: 6px;
  padding: 0 8px;
}
.hero p {
  font-size: 1.3em;
  margin-bottom: 1.4em;
  color: #5a0f2c;
}
.cta-btn {
  display: inline-block;
  background: #b72851;
  color: #fff;
  padding: 16px 38px;
  border-radius: 30px;
  font-size: 1.1em;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.2s;
  box-shadow: 0 2px 12px #b7285140;
}
.cta-btn:hover {
  background: #d45d79;
}
.hero-img {
  width: 350px;
  border-radius: 18px;
  box-shadow: 0 5px 20px #d45d7915;
  margin-left: 40px;
  max-width: 100%;
}
.features {
  padding: 60px 7vw 30px 7vw;
  background: #fff;
  text-align: center;
}
.features h2 {
  color: #b72851;
  font-size: 2em;
  margin-bottom: 32px;
}
.feature-list {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.feature-card {
  background: #f7e4e5;
  border-radius: 18px;
  box-shadow: 0 2px 10px #0001;
  padding: 28px 18px;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature-card img {
  width: 64px;
  margin-bottom: 18px;
}
.feature-card h3 {
  color: #b72851;
  margin-bottom: 10px;
}
.products {
  padding: 50px 7vw 30px 7vw;
  background: #f7c6c720;
  text-align: center;
}
.products h2 {
  color: #b72851;
  font-size: 2em;
  margin-bottom: 32px;
}
.products-list {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
}
.product-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px #0001;
  padding: 22px 18px;
  width: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.product-card img {
  width: 100px;
  height: 100px;
  border-radius: 18px;
  object-fit: cover;
  margin-bottom: 14px;
  box-shadow: 0 2px 8px #b7285122;
}
.product-card h4 {
  color: #b72851;
  margin-bottom: 7px;
}
.contact {
  padding: 60px 7vw 40px 7vw;
  background: #fff;
  text-align: center;
}
.contact h2 {
  color: #b72851;
  font-size: 2em;
  margin-bottom: 18px;
}
.contact form {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.contact input {
  padding: 12px 16px;
  border: 1px solid #b7285120;
  border-radius: 8px;
  width: 300px;
  font-size: 1em;
}
.contact button {
  background: #b72851;
  color: #fff;
  padding: 12px 40px;
  border: none;
  border-radius: 30px;
  font-size: 1.1em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.contact button:hover {
  background: #d45d79;
}
footer {
  background: #f7c6c7;
  color: #b72851;
  text-align: center;
  padding: 18px 0;
  font-size: 1em;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 30px 4vw 10px 4vw;
  }
  .hero-img {
    margin: 30px 0 0 0;
    width: 90vw;
    max-width: 400px;
  }
  .feature-list, .products-list {
    flex-direction: column;
    gap: 24px;
  }
}