.elementor-4233 .elementor-element.elementor-element-e46a465{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--gap:0px 0px;--row-gap:0px;--column-gap:0px;}.elementor-4233 .elementor-element.elementor-element-10fc951 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-4233 .elementor-element.elementor-element-a9a3789 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}@media(min-width:768px){.elementor-4233 .elementor-element.elementor-element-e46a465{--content-width:100%;}}/* Start custom CSS for html, class: .elementor-element-10fc951 */.accordion-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
}

.accordion-item {
  margin-bottom: 16px;
}

.accordion-button {
  width: 100%;
  background-color: #000807;
  color: white;
  padding: 24px 200px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.number {
  font-size: 20px;
  font-weight: 300;
  min-width: 60px;
  text-align: left;
}

.question {
  font-size: 20px;
  flex-grow: 1;
  text-align: left;
  padding: 0 16px;
}

.icon-container {
  width: 24px;
  height: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.plus-icon,
.minus-icon {
  position: absolute;
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.plus-icon {
  opacity: 1;
  transform: rotate(0deg);
}

.minus-icon {
  opacity: 0;
  transform: rotate(-90deg);
}

.accordion-item.active .plus-icon {
  opacity: 0;
  transform: rotate(90deg);
}

.accordion-item.active .minus-icon {
  opacity: 1;
  transform: rotate(0deg);
}

.accordion-content {
  background-color: #000C0A;
  color: white;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
  max-height: 500px;
}

.accordion-content p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
  padding: 24px 200px;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-a9a3789 */.faq-container {
  width: 100%;
  margin: auto;
  font-family: 'Outfit', sans-serif;
}

.faq-item {
  border-bottom: 1px solid #012720;
}

.faq-question {
  background-color: #000807;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-number {
  width: 50px;
  font-weight: 300;
  color: #fff;
  text-align: left;
  flex-shrink: 0;
}

.faq-text {
  text-align: center;
  flex-grow: 1;
}

.faq-toggle {
  width: 20px;
  font-size: 24px;
  font-weight: 200;
  color: #fff;
  text-align: right;
  transition: transform 0.3s ease;
}

.faq-answer {
  background-color: #000C0A;
  color: #ACACAC;
  padding: 15px 20px;
  display: none;
  animation: fadeIn 0.3s ease;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-toggle {
  transform: rotate(180deg);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}/* End custom CSS */