body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom, #e6f7ff, #ffffff);
  color: #333;
  line-height: 1.6;
}

header.hero {
  text-align: center;
  padding: 60px 20px;
  background: white;
  background-color: #ffffff;
  color: #3E1AB0;
}

.logo {
  width: 180px;
  margin-bottom: 20px;
}

.btn {
  background-color: #6E5521;
  color: white;
  padding: 15px 30px;
  border-radius: 25px;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
  transition: background-color 0.3s;
}
.btn:hover { background-color: #3E1AB0; }

section {
  padding: 50px 20px;
  max-width: 1000px;
  margin: auto;
}

h2 {
  text-align: center;
  color: #3E1AB0;
  margin-bottom: 30px;
}

.products .product {
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 30px;
  margin-bottom: 40px;
  text-align: center;
}

.products ul {
  list-style-type: none;
  padding: 0;
}

.products li::before {
  content: "✔ ";
  color: #00AEEF;
}

iframe {
  border-radius: 10px;
  margin-top: 20px;
}

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

.card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: center;
  font-weight: 500;
}

.contact a {
  color: #3E1AB0;
  text-decoration: none;
}
.span {background: linear-gradient(to right, #00AEEF, #3E1AB0);}
footer {
  text-align: center;
  padding: 20px;
  background-color: #f2f2f2;
  color: #333;
}

.footer-logo {
  width: 120px;
  margin-bottom: 10px;
}
