.elementor-758 .elementor-element.elementor-element-f44bc25{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-758 .elementor-element.elementor-element-5c871a6 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-5c871a6 *//* Base Reset & Typography */
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #222;
  background: linear-gradient(to bottom right, #fdfdfd, #f3f4f7);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

/* Header / Hero */
.hero-section {
  padding: 120px 20px 80px;
  background: linear-gradient(135deg, #e0e7ff, #f5f3ff);
  text-align: center;
}

.hero-section h1 {
  font-size: 48px;
  margin-bottom: 20px;
  color: #111827;
}

.hero-section p {
  font-size: 18px;
  color: #374151;
  max-width: 700px;
  margin: 0 auto;
}

/* Mission Section */
.mission {
  padding: 80px 20px;
  background: #ffffff;
  text-align: center;
}

.mission h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.mission p {
  font-size: 18px;
  color: #4b5563;
  max-width: 850px;
  margin: 0 auto;
}

/* Why Choose Us */
.why-choose {
  background: #f8f9fc;
  padding: 80px 20px;
  text-align: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: #ffffffcc;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.05);
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.card h3 {
  font-size: 20px;
  color: #1f2937;
  margin-bottom: 12px;
}

.card p {
  color: #555;
  font-size: 15px;
}

/* FAQ Section */
.faq {
  background: #fff;
  padding: 80px 20px;
}

.faq h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 50px;
}

.faq-item {
  background: #f9fafb;
  border-radius: 12px;
  margin-bottom: 20px;
  padding: 0;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.faq-item summary {
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  padding: 20px 24px;
  color: #6366f1;
  background: #f1f5f9;
  transition: 0.3s ease;
}

.faq-item[open] summary {
  background: #e0e7ff;
}

.faq-item p {/* End custom CSS */