/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f7f7f7;
  color: #333;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

header {
  background: #222;
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: #00c288;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links li a:hover {
  color: #00c288;
}

.home {
  background: #00c288;
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.home h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.home p {
  font-size: 18px;
}

.btn {
  margin-top: 25px;
  display: inline-block;
  background: white;
  color: #00c288;
  padding: 12px 24px;
  border-radius: 5px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn:hover {
  background: #e2f7f2;
}

h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.card {
  background: white;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.card h3 {
  color: #00c288;
  margin-bottom: 10px;
}

.about p {
  max-width: 800px;
  margin: auto;
  font-size: 17px;
  line-height: 1.8;
  text-align: center;
}

.pricing ul {
  max-width: 600px;
  margin: auto;
  padding-left: 20px;
  font-size: 16px;
  list-style-type: none;
}

.pricing ul li {
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
}

#faq .card p {
  font-size: 15px;
  line-height: 1.6;
}

#blog p {
  font-size: 16px;
}

form {
  max-width: 600px;
  margin: auto;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form input,
form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

form button {
  background: #00c288;
  color: white;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

form button:hover {
  background: #009e70;
}

footer {
  background: #222;
  color: white;
  text-align: center;
  padding: 30px 10px;
}

footer p {
  margin: 8px 0;
  font-size: 15px;
}

footer a {
  color: #00c288;
  text-decoration: none;
}

@media (max-width: 600px) {
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }

  .home h2 {
    font-size: 28px;
  }

  .btn {
    padding: 10px 20px;
  }
}
