<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.faq-container {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
    max-width: 100%;
}

.faq-container.faq-auto-width {
    display: inline-block;
    width: auto;
    max-width: 800px;
}

.faq-item {
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
}

.faq-question {
    padding: 15px 20px!important;
    background-color: #f8f9fa;
    font-weight: 600;
    position: relative;
    transition: background-color 0.3s ease;
    
}

.faq-question-expandable {
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question-expandable:hover {
    background-color: #e9ecef;
}

.faq-arrow {
    font-size: 12px;
    transition: transform 0.3s ease;
    color: #666;
}

.faq-answer {
    padding: 20px;
    background-color: #ffffff;
    line-height: 1.6;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.faq-answer-hidden {
    display: none;
}

/* FAQ Boxes Grid Design */
.faq-boxes-grid {
    display: grid;
    gap: 24px;
    margin: 0 auto;
    width: 100%;
}
.faq-boxes-grid.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.faq-boxes-grid.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.faq-boxes-grid.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.faq-boxes-grid.grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
.faq-boxes-grid.grid-cols-6 { grid-template-columns: repeat(6, 1fr); }

.faq-boxes-grid, .faq-container, .faq-boxes-grid * {
  list-style: none !important;
}
.faq-box-item {
  border-width: 1px;
  border-style: solid;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
  background: none !important;
  margin: 0;
}
.faq-box-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
}
.faq-box-question {
  font-weight: 600;
  font-size: 1.1em;
  padding: 18px 20px 10px 28px!important;
  background: transparent;
  border-bottom: 1px solid #e0e0e0;
  margin: 0;
  border-radius: 8px 8px 0 0;
}
.faq-box-answer {
  padding: 14px 20px 20px 20px;
  background: transparent;
  flex: 1 1 auto;
  margin: 0!important;
  border-radius: 0 0 8px 8px;
  margin-left: 0!important;
}

/* Remove bullets from any ul/li in Elementor containers */
.elementor-widget-container ul,
.elementor-widget-container li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Responsive grid */
@media (max-width: 1024px) {
    .faq-boxes-grid.grid-cols-4,
    .faq-boxes-grid.grid-cols-5,
    .faq-boxes-grid.grid-cols-6 {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 767px) {
    .faq-boxes-grid { grid-template-columns: 1fr; }
    .faq-container { padding: 10px; }
    .faq-question, .faq-answer { padding: 15px; }
}

/* FAQ List Design */
.faq-list {
    list-style: none !important;
    padding: 0;
    margin: 0;
}

.faq-item {
    list-style: none !important;
    margin: 0 0 5px 0;
    padding: 0;
}

.faq-question {
    list-style: none !important;
    margin: 0;
    padding: 0;
}

.faq-answer {
    font-size: 1em;
    line-height: 1.4;
    margin-bottom: 0.05em;
    background: none !important;
    padding-top: 15px!important;
    padding-bottom: 0px!important;
}

/* FAQ Tabs Design */
.faq-tabs {
  display: flex;
  gap: 0.5em;
  margin-bottom: 1em;
}
.faq-tab-btn {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 4px 4px 0 0;
  padding: 0.5em 1.2em;
  cursor: pointer;
  font-weight: 500;
  color: #444;
  transition: background 0.2s, color 0.2s;
}
.faq-tab-btn.active {
  background: #fff;
  color: #d72660;
  border-bottom: 1px solid #fff;
  z-index: 2;
}
.faq-tab-content {
  display: none;
  padding: 0 0.5em 0.5em 0.5em;
}
.faq-tab-content.active {
  display: block;
}
.faq-tab-item {
  margin-bottom: 1.2em;
}

.faq-search-wrap {
  margin-bottom: 16px;
}
.faq-search-input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
  margin-bottom: 8px;
  box-sizing: border-box;
}
.faq-no-results {
  display: none;
  color: #888;
  text-align: left;
  margin-top: 12px;
  font-style: italic;
}

/* Toggles Plus Styles */
.faq-toggles-plus .faq-item {
  border: 1.5px solid #e0e0e0;
  border-radius: 6px;
  margin-bottom: 8px;
  background: none;
  transition: border-color 0.2s, background 0.2s;
}
.faq-toggles-plus .faq-question {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 600;
  font-size: 1.1em;
  padding: 16px 20px;
  background: #fff;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
}
.faq-toggles-plus .faq-toggle-sign {
  font-size: 1.3em;
  font-weight: bold;
  color: #d72660;
  width: 18px;
  text-align: center;
  pointer-events: none;
  transition: color 0.2s;
  margin-right: 16px;
}
.faq-toggles-plus .faq-item.faq-open .faq-question {
  /* Elementor control will override this if set */
  background: #fbeaec;
}
.faq-toggles-plus .faq-answer {
  padding: 18px 24px 18px 55px;
  background: #fff;
  border-radius: 0 0 6px 6px;
  border-top: 1px solid #f0f0f0;
}
.faq-toggles-plus .faq-answer p {
  margin-bottom: 0px!important;
  padding-bottom: 10px!important;
}
/*faq-toggles styles*/
div.elementor-widget-my_faq div.faq-toggles div.faq-answer p{
  margin-bottom: 0!important;
  padding-bottom: 10px!important;
}

/* FAQ Toggles (accordion) styles */
.faq-toggles .faq-question {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-weight: 600;
  font-size: 1.1em;
  padding: 16px 20px;
  background: #fff;
  border-radius: 6px 6px 0 0;
  cursor: pointer;
  position: relative;
  transition: background 0.2s;
}
.faq-toggles .faq-arrow {
  font-size: 1.3em;
  font-weight: bold;
  color: #1a8cff;
  width: 18px;
  text-align: center;
  pointer-events: none;
  transition: color 0.2s;
  margin-right: 16px;
}
.faq-toggles .faq-question span.faq-arrow + span, .faq-toggles .faq-question .faq-arrow + strong, .faq-toggles .faq-question .faq-arrow + div {
  margin-left: 0;
}

.faq-toggle-icon {
  padding-right: 12px;
}
/* Ensure the question text is left-aligned and arrow has margin */

/* --- Tabs Design Fixes --- */
.faq-container.faq-tabs {
  display: block !important;
  padding: 0 !important;
  background: none !important;
  box-shadow: none !important;
  border: none !important;
}
.faq-container.faq-tabs .faq-tabs {
  display: flex !important;
  flex-direction: row !important;
  gap: 0.5em;
  margin-bottom: 1em;
  background: none !important;
  box-shadow: none !important;
  border: none !important;
}
.faq-container.faq-tabs .faq-tab-btn {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  border-radius: 4px 4px 0 0;
  padding: 0.5em 1.2em;
  cursor: pointer;
  font-weight: 500;
  color: #444;
  transition: background 0.2s, color 0.2s;
  min-width: 100px;
  text-align: center;
  box-shadow: none !important;
}
.faq-container.faq-tabs .faq-tab-btn.active {
  background: #fff;
  color: #d72660;
  border-bottom: 1px solid #fff;
  z-index: 2;
}
.faq-container.faq-tabs .faq-tab-content {
  display: none;
  padding: 0 0.5em 0.5em 0.5em;
}
.faq-container.faq-tabs .faq-tab-content.active {
  display: block;
}
.faq-container.faq-tabs .faq-tab-item {
  margin-bottom: 1.2em;
}
/* Prevent grid/box styles from affecting tabs */
.faq-container.faq-tabs .faq-tabs,
.faq-container.faq-tabs .faq-tab-btn,
.faq-container.faq-tabs .faq-tab-content,
.faq-container.faq-tabs .faq-tab-item {
  grid-column: auto !important;
  grid-row: auto !important;
  display: initial;
}

/* Ensure toggles-plus answer background color is always applied */
.elementor-widget-my_faq .faq-toggles-plus .faq-answer {
  background: inherit;
  background-color: inherit;
}
.elementor-widget-my_faq .faq-toggles-plus .faq-answer[style*="background-color"] {
  background: unset !important;
}
.elementor-widget-my_faq .faq-toggles-plus .faq-answer {
  background-color: var(--faq-toggles-plus-answer-bg, initial) !important;
}
/* Remove or override any background: none !important; for toggles-plus answer */
.faq-toggles-plus .faq-answer {
  background: unset !important;
}
</pre></body></html>