/* General Styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background-color: white;
  border-bottom: 2px solid #37d3ab;
}

.navbar .logo img {
  width: 150px;
}

.nav-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

.nav-links ul li {
  margin-left: 30px;
}

.nav-links ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
  transition: color 0.3s ease;
}

.nav-links ul li a:hover {
  color: #37d3ab;
}

/* Hero Section */
.hero {
  background: url("/images/hero-bg.jpg") no-repeat center center/cover;
  color: white;
  padding: 150px 0;
  text-align: center;
}

.hero h1 {
  color: #37d3ab;
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 20px;
  margin-bottom: 30px;
  color: #37d3ab;
}

.hero .btn {
  background-color: #37d3ab;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  transition: background 0.3s ease;
}

.hero .btn.secondary {
  background-color: white;
  color: #37d3ab;
  border: 2px solid #37d3ab;
}

.hero .btn:hover {
  background-color: #2ab18f;
}

/* Features Section */
#features {
  padding: 80px 0;
  background-color: white;
}

#features h2 {
  font-size: 36px;
  color: #37d3ab;
  margin-bottom: 50px;
}

.features-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.feature {
  max-width: 300px;
  text-align: center;
}

.feature h3 {
  font-size: 24px;
  color: #37d3ab;
}

.feature p {
  font-size: 16px;
}

/* Pricing Section */
#pricing {
  padding: 80px 0;
  background-color: #f4f4f4;
}

#pricing h2 {
  font-size: 36px;
  color: #37d3ab;
  margin-bottom: 50px;
}

.pricing-options {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.pricing-plan {
  background-color: white;
  padding: 30px;
  border: 2px solid #37d3ab;
  border-radius: 10px;
  max-width: 30%;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
}

.pricing-plan h3 {
  font-size: 24px;
  color: #37d3ab;
}

.pricing-plan p {
  font-size: 18px;
  margin: 10px 0;
}

.pricing-plan .btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #37d3ab;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.pricing-plan .btn:hover {
  background-color: #2ab18f;
}

/* Contact Section */
#contact {
  padding: 80px 0;
}

#contact h2 {
  font-size: 36px;
  color: #37d3ab;
  margin-bottom: 30px;
}

#contact form {
  max-width: 600px;
  margin: 0 auto;
}

#contact input,
#contact textarea {
  width: 100%;
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

#contact button {
  background-color: #37d3ab;
  color: white;
  padding: 15px 30px;
  border: none;
  cursor: pointer;
  border-radius: 5px;
  font-size: 18px;
  transition: background 0.3s ease;
}

#contact button:hover {
  background-color: #2ab18f;
}

/* Footer */
footer {
  background-color: white;
  padding: 40px 0;
  border-top: 2px solid #37d3ab;
  text-align: center;
  color: black;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 80%;
  margin: 0 auto;
}

.footer-logo img {
  width: 100px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  display: inline;
  margin: 0 15px;
}

.footer-links ul li a {
  color: black;
  text-decoration: none;
}

.footer-links ul li a:hover {
  color: #37d3ab;
}

.footer-social a {
  color: black;
  margin: 0 10px;
  font-size: 24px;
}

.footer-social a:hover {
  color: #37d3ab;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }

  .features-grid {
    flex-direction: column;
    align-items: center;
  }

  .pricing-options {
    flex-direction: column;
    align-items: center;
  }

  .pricing-plan {
    max-width: 80%;
    margin-bottom: 20px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
  }
}
