/* Lotus365 Custom Styles */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: #f9f9f9;
  color: #222;
  margin: 0;
  line-height: 1.6;
}
header {
  background: #fff;
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
}
header img {
  height: 55px;
}
.site-nav .menu {
  display: flex;
  gap: 16px;
  align-items: center;
}
.site-nav .menu a {
  color: #000;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 17px;
  transition: background 0.2s;
}
.site-nav .menu a:hover {
  background: #fee741;
  color: #0b8368;
}
.hero {
  background: linear-gradient(90deg,#0b8368 60%,#fee741 100%);
  color: #fff;
  text-align: center;
  padding: 40px 20px 30px 20px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
}
.btn {
  display: inline-block;
  margin: 20px 10px 0;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #000;
  background: #fee741;
  transition: 0.3s;
}
.btn:hover {
  background: #0b8368;
  color: #fff;
}
section {
  padding: 60px 40px;
  margin: auto;
}
section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #0b8368;
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 25px;
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-5px);
}
.card h3 {
  color: #0b8368;
}
.faq .card {
  background: #f9f9f9;
  border: 1px solid #e0e0e0;
  color: #222;
}
footer {
  background: #08866a;
  color: #ddd;
  padding: 30px;
  text-align: center;
}
footer p {
  margin: 5px 0;
}
@media (max-width: 768px) {
  header {
    padding: 10px 10px;
  }
  .hero {
    padding: 30px 10px 20px 10px;
  }
  section {
    padding: 30px 10px;
  }
  .features {
    grid-template-columns: 1fr;
  }
}
