.elementor-1266 .elementor-element.elementor-element-cfab36d{--display:flex;--flex-direction:column;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--align-items:center;}.elementor-1266 .elementor-element.elementor-element-cfab36d:not(.elementor-motion-effects-element-type-background), .elementor-1266 .elementor-element.elementor-element-cfab36d > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#FFFFFF;}.elementor-1266 .elementor-element.elementor-element-6b9ef5d.elementor-element{--align-self:center;}@media(max-width:767px){.elementor-1266 .elementor-element.elementor-element-cfab36d{--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}/* Start custom CSS for html, class: .elementor-element-6b9ef5d *//* Global Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Arial', sans-serif;
  background-color: white;
  color: #051E26;
  font-family: 'albert sans';
}

/* FAQ Section */
.faq-section {
  padding: 40px 20px;
  background-color: #FFFFFF;
  text-align: left;
  width: 100%;
  max-width: 1250px;
  margin: 0 auto;
  box-sizing: border-box;
}

.faq-intro {
  max-width: 1250px;
  opacity: 1;
  animation: slideInRight 1s ease-out forwards;
}

.faq-intro h1 {
  font-size: 34px;
  color: #8D2F88;
  margin-bottom: 10px;
  letter-spacing: 1px;
  transform: translateX(-50px);
  animation: slideInRight 1s ease-out forwards;
}

.faq-intro p {
  font-size: 15px;
  color: #051E26;
  line-height: 1.8;
  transform: translateX(50px);
  animation: slideInRight 1s ease-out forwards;
}

/* FAQ Item */
.faq-item {
  background-color: #f4f4f4;
  margin: 20px 0;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateX(-50px) scale(0.95);
  animation: fadeInLeft 0.8s ease-out forwards;
  transition: background-color 0.3s ease;
}

.faq-item:nth-child(2) {
  animation-delay: 0.4s;
}

.faq-item:nth-child(3) {
  animation-delay: 0.6s;
}

.faq-item:nth-child(4) {
  animation-delay: 0.8s;
}

.faq-item:nth-child(5) {
  animation-delay: 1s;
}

/* Hover effect for FAQ item */
.faq-item:hover {
  background-color: white;
  transform: scale(1.02);
  box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.15);
}

/* FAQ Question Styling */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.faq-question h2 {
  font-size: 24px;
  color: #051E26;
  padding-left: 10px;
}

/* Add more space between the toggle button and the text */
.plus-minus {
  font-size: 2rem;
  color: #8D2F88;
  margin-left: 10px;
  transition: transform 0.3s ease;
}

/* Open FAQ Answer (Initially hidden) */
.faq-answer {
  display: none;
  font-size: 1rem;
  color: #051E26;
  line-height: 1.6;
  margin-top: 15px;
  animation: fadeInUp 0.5s ease-in forwards;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .plus-minus {
  transform: rotate(45deg);
}

.faq-answer p {
  padding: 0 20px;
}

/* Responsive Adjustments */

/* Tablet View */
@media (max-width: 768px) {
  .faq-section {
    padding: 30px 15px;
  }

  .faq-intro h1 {
    font-size: 28px;
    text-align: center;
  }

  .faq-intro p {
    font-size: 14px;
    text-align: center;
  }

  .faq-item {
    padding: 15px;
  }

  .faq-question h2 {
    font-size: 20px;
    padding-left: 5px;
  }

  .plus-minus {
    font-size: 1.8rem;
  }

  .faq-answer {
    font-size: 0.95rem;
  }
}

/* Mobile View */
@media (max-width: 480px) {
  .faq-section {
    padding: 25px 10px;
  }

  .faq-intro h1 {
    font-size: 24px;
  }

  .faq-intro p {
    font-size: 13px;
  }

  .faq-item {
    padding: 12px;
  }

  .faq-question {
    flex-direction: row;
    align-items: flex-start;
  }

  .faq-question h2 {
    font-size: 18px;
    padding-left: 5px;
  }

  .plus-minus {
    font-size: 1.6rem;
    margin-left: 8px;
  }

  .faq-answer p {
    padding: 0 10px;
  }
}

/* Animations */
@keyframes fadeInLeft {
  0% { opacity: 0; transform: translateX(-50px) scale(0.95); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(50px); }
  100% { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}/* End custom CSS */