html {
  scroll-behavior: smooth;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, sans-serif;
  background: white;
  overflow-x: hidden;
}
.faq-question:focus {
  outline: 2px solid #2196f3;
  outline-offset: 2px;
}

ul {
  list-style-type: none;
}
a {
  text-decoration: none;
}
h1,
h2,
h3,
h4 {
  font-family: "Inter", sans-serif;
  text-transform: capitalize;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
h1 {
  font-size: 3rem;
}
h2 {
  font-size: 2rem;
  color: #0f172a;
}
h3 {
   font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 15px;
}
h4 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}
p {
  margin-bottom: 40px;
  color: #6b7280;
  line-height: 1.6;
  font-weight: 300;
  font-size: 18px;
}

/* .hero-section {
  background-color: #ffffff;
} */

@media screen and (min-width: 800px) {
  h1 {
    font-size: 4rem;
  }
  h2 {
    font-size: 2.5rem;
  }
  h3 {
    font-size: 1.75rem;
  }
  h4 {
    font-size: 1rem;
  }
  body {
    font-size: 1rem;
  }
  h1,
  h2,
  h3,
  h4 {
    line-height: 1;
  }
}

/* .container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
} */

.section-title {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-title .highlight {
  background: linear-gradient(135deg, #2196f3, #1976d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* button{
  background: linear-gradient(135deg, #2196f3, #1976d2);
    border: none;
    border-radius: 8px; 
} */

.action-btn {
  background: linear-gradient(135deg, #0891b2, #2563eb);
  color: white;
  padding: 14px 28px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 188, 212, 0.3);
}

.action-btn:hover {
  background: linear-gradient(135deg, #0097a7, #00838f);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 188, 212, 0.4);
}
@media (max-width: 1200px) {
  .section-title {
    font-size: 48px;
  }
}

@media (max-width: 1024px) {
  .section-title {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 28px;
  }
  .action-btn {
    padding: 12px 24px;
    font-size: 14px;
  }
}

@media (min-width: 1200px) {
  .section-title {
    font-size: 56px;
  }
}



