
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: rgba(252, 252, 252, 0.521) !important;;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  min-height: 100vh !important;
  display: flex;
  flex-direction: column;


}
footer{
  margin-top: auto ;
}
main {
  flex: 1;
  width: 100vw;
  padding-top: 7rem !important;;
}

.accordion {
  /* background: linear-gradient(90deg, #eef2ff 0%, #fff 100%); */
  color: #3730a3;
  cursor: pointer;
  width: 100%;
  text-align: left;
  padding: 1.25rem 1rem;
  border: none;
  outline: none;
  position: relative;
  font-size: 1.125rem;
  font-weight: 600;
  border-radius: 0.75rem 0.75rem 0 0;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.07);
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.accordion:hover,
.accordion.active {
  background: linear-gradient(90deg, #6366f1 0%, #818cf8 100%);
  color: #fff;
}

.accordion.active::before {
  filter: brightness(1.5);
}
.accordion::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #6366f1;
  transition: transform 0.3s, color 0.3s, content 0.3s;
}
.accordion.active::after {
  content: "−";
  color: #fff;
  transform: translateY(-50%) rotate(180deg);
}
.panel p{
    padding-top: 1rem;
}
.panel {
  max-height: 0;
  overflow: hidden;
  background: #fff !important;
  border-radius: 0 0 0.75rem 0.75rem;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.07);
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s;
  padding: 0 1rem;
}
.accordion.active + .panel {
  max-height: 200px; /* Adjust as needed for content */
  background: #eef2ff;
  padding-bottom: 1rem;
}
.faq > div {
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid #e0e7ff;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.07);
}
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.25rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  line-height: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  padding: 0.625rem 1.25rem;
  font-weight: 600;
  border: .5px solid white;
  transition: all 300ms ease-in;
;
}
.btn:hover {
  background: rgba(195, 195, 197, 0.1);

}

.btn-primary {
  background: #6366f1;
  color: #fff;
    border: none;
}
.btn-primary:hover{
  background: #4447f1;
  color: #fff;
}

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.drawer {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 380px;
  max-width: 100%;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  z-index: 50;
  background: #fff;
  overflow: auto;
}

.drawer.open {
  transform: translateX(0);
}

.drawer-mask {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  z-index: 40;
}

.drawer.open + .drawer-mask {
  display: block;
}

.toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1f2937;
  color: #fff;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 60;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}
