/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  color: #111;
  background: #f9fafb;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 5%;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #007b50;
}

.btn-primary {
  background: #007b50;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  text-decoration: none;
}

.btn-primary:hover {
  background: #005f3c;
}

.btn-secondary {
  border: 2px solid #007b50;
  color: #007b50;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: #007b50;
  color: #fff;
}

/* Hero Section */
.hero {
  background: #f0f7f4;
  text-align: center;
  padding: 5rem 2rem;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.hero-content h1 span {
  color: #007b50;
}

.hero-content p {
  max-width: 650px;
  margin: auto;
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Steps */
.steps {
  text-align: center;
  padding: 4rem 2rem;
}

.steps h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.steps h2 span {
  color: #007b50;
}

.step-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.step {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: left;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Expert Section */
.expert {
  background: #eef6f3;
  padding: 4rem 2rem;
}

.expert-box {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  align-items: center;
}

.expert-text {
  flex: 1;
  min-width: 280px;
}

.expert-text h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.expert-text ul {
  margin: 1rem 0;
  list-style: none;
}

.expert-text ul li {
  margin-bottom: 0.5rem;
  position: relative;
  padding-left: 1.2rem;
}

.expert-text ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #007b50;
}

.expert-image img {
  width: 100%;
  border-radius: 10px;
  max-width: 400px;
}

/* Footer */
footer {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 1rem;
  margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hero h1 {
    font-size: 2rem;
  }
}