/* Reset and base styles */
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background: #f6f7fb;
  color: #222;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #232946;
  padding: 1rem 2rem;
}
.logo {
  color: #eebbc3;
  font-weight: bold;
  text-decoration: none;
  font-size: 2rem;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}
.navbar li a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.navbar li a:hover {
  color: #eebbc3;
}
.hero {
  text-align: center;
  padding: 6rem 1rem 3rem 1rem;
  background: linear-gradient(135deg, #232946 60%, #eebbc3 100%);
  color: #fff;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.3rem;
}
.cta-button {
  background: #eebbc3;
  color: #232946;
  border: none;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 2rem;
  margin-top: 2rem;
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s;
}
.cta-button:hover {
  background: #ffd6e0;
}
.container {
  max-width: 860px;
  margin: 3rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(35,41,70,0.07);
}
.services-list {
  padding: 0;
  list-style: none;
}
.services-list li {
  font-size: 1.15rem;
  margin: 1rem 0;
  color: #232946;
}
.product-list {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.product {
  background: #f4f5ff;
  border-radius: 10px;
  padding: 1.5rem;
  min-width: 200px;
  flex: 1 1 220px;
  box-shadow: 0 2px 12px rgba(34,21,73,0.06);
}
.product h2 {
  margin-top: 0;
}
.buy-button {
  background: #232946;
  color: #eebbc3;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.6rem;
  font-size: 1rem;
}
.buy-button:hover {
  background: #eebbc3;
  color: #232946;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 520px;
}
.contact-form input,
.contact-form textarea {
  padding: 0.7rem;
  border-radius: 7px;
  border: 1px solid #c3cbe5;
  font-size: 1rem;
}
.contact-form button[type="submit"] {
  background: #232946;
  color: #eebbc3;
  border: none;
  padding: 0.9rem 2.3rem;
  border-radius: 1.2rem;
  font-size: 1rem;
  cursor: pointer;
}
.contact-form button[type="submit"]:hover {
  background: #eebbc3;
  color: #232946;
}