/* General Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Helvetica Neue', sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #222;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Navbar */
.navbar {
  background-color: #f8f9fa;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #e2e2e2;
}
.navbar .logo {
  font-weight: bold;
  font-size: 1.5rem;
  color: #0072ce;
}
.nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
}
.nav-links a {
  text-decoration: none;
  color: #333;
}
.nav-links .btn-primary {
  background-color: #0072ce;
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 4px;
}
.nav-links .btn-primary:hover {
  background-color: #005ea2;
}

/* Hero Section */
.hero {
  background-color: #eaf4ff;
  padding: 4rem 0;
  text-align: center;
}
.hero .subheading {
  font-size: 1rem;
  color: #0072ce;
  margin-bottom: 0.5rem;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.hero-description {
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}
.cta-buttons a {
  margin: 0 0.5rem;
}
.btn-primary {
  background-color: #0072ce;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
}
.btn-secondary {
  background-color: transparent;
  border: 2px solid #0072ce;
  color: #0072ce;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
}
.btn-primary:hover, .btn-secondary:hover {
  opacity: 0.9;
}
.features-section {
  padding: 4rem 0;
  background-color: #f9f9f9;
  text-align: center;
}
.section-title {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
.section-description {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: 1.1rem;
  color: #555;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}
.feature-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}
.feature-card h3 {
  font-size: 1.25rem;
  color: #0072ce;
  margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 1rem;
  color: #333;
}
.how-it-works-section, .why-us-section {
  padding: 4rem 0;
  text-align: center;
}
.steps-grid, .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.step-card, .benefit-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}
.step-card h3, .benefit-card h3 {
  color: #0072ce;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.step-card p, .benefit-card p {
  font-size: 1rem;
  color: #555;
}
.pricing-section, .faq-section {
  padding: 4rem 0;
  text-align: center;
}
.pricing-grid, .faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.pricing-card, .faq-item {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}
.pricing-card p, .faq-item p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 1rem;
}
.pricing-card h3, .faq-item h4 {
  color: #0072ce;
}
.demo-form-section {
  padding: 4rem 0;
  background-color: #f9f9f9;
  text-align: center;
}
.demo-form {
  max-width: 600px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 1.5rem;
}
.demo-form input,
.demo-form textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}
.demo-form input:focus,
.demo-form textarea:focus {
  outline: none;
  border-color: #0072ce;
}
.demo-form button {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  background-color: #0072ce;
  color: #fff;
  cursor: pointer;
}
.demo-form button:hover {
  background-color: #005ea2;
}