@import url('https://fonts.googleapis.com/css2?family=Fira+Sans:wght@400;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: 'Fira Sans', sans-serif;
}

.rounded-lg {
  border-radius: 1rem;
}
.btn-primary {
  background-color: #4CAF50;
  transition: all 0.3s ease;
}
.btn-primary:hover {
  background-color: #3e8e41;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.nav-link:hover {
  color: #4CAF50;
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.testimonial-card:hover {
  transform: scale(1.02);
}
.blog-card:hover .blog-title {
  color: #4CAF50;
}

input:focus, textarea:focus {
  border-color: #4CAF50 !important;
  box-shadow: 0 0 0 1px #4CAF50 !important;
}

#mobile-menu {
  transition: max-height 0.3s ease; 
  max-height: 0;
  overflow: hidden;
}

#mobile-menu.open {
  max-height: 500px;
}


@media (max-width: 400px) {
    .floating-btn {
      padding: 12px 18px;
      font-size: 1rem;
      border-radius: 40px;
      bottom: 15px;
      right: 15px;
    }
  }

@media (max-width: 640px) {
  .hero-title {
      font-size: 2rem;
      line-height: 2.5rem;
  }
  .section-title {
      font-size: 1.8rem;
  }
  .feature-card, .testimonial-card, .blog-card {
      padding: 1.5rem;
  }
  .plan-table th, .plan-table td {
      padding: 0.5rem;
      font-size: 0.875rem;
  }
}

@media (max-width: 768px) {
  .hero-content {
      flex-direction: column;
  }
  .hero-text, .hero-image {
      width: 100%;
  }
  .hero-image {
      margin-top: 2rem;
  }
}