/* Start custom CSS for html, class: .elementor-element-cc4d5e0 *//* CSS Styling for the FAQ */
.faq-container {
  max-width: 1800px;
  margin: 20px auto;
}

.faq-item {
  border: 1px solid #ddd;
  margin-bottom: 10px;
  border-radius: 5px;
  overflow: hidden;
}

.faq-header {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.faq-header h3 {
  background-color: #ffffff;
  padding: 15px;
  margin: 0;
  font-size: 24px;
  font-weight: 400;
  text-align: left;
  flex-grow: 1;  /* Allow the heading to take all available space */
}

.faq-header .toggle-icon {
  font-size: 22px;  /* Increase font size for bolder look */
  font-weight: bold;  /* Make the icon bolder */
  transition: transform 0.3s ease;
  margin-right: 15px;
  margin-left: 15px;
}

.faq-item .answer {
  padding: 15px;
  display: none;
  background-color: #ffffff;
  font-size: 16px;
}

/* Show the answer when the 'open' class is added */
.faq-item.open .answer {
  display: block;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
  .faq-header h3 {
    font-size: 20.4px;  /* 15% smaller than the original 24px */
  }

  .faq-item .answer {
    font-size: 14.4px;  /* 10% smaller than the original 16px */
  }
}/* End custom CSS */