.elementor-7587 .elementor-element.elementor-element-7b02ddb{--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;}/* Start custom CSS */<style>
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Sarabun', sans-serif;
    background: #f5f7fa;
    color: #333;
    padding: 40px 20px;
  }

  .faq-wrapper {
    max-width: 860px;
    margin: 0 auto;
  }

  .faq-header {
    text-align: center;
    margin-bottom: 48px;
  }

  .faq-header h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #42DD69;
    margin-bottom: 12px;
  }

  .faq-header p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
  }

  .faq-header a {
    color: #42DD69;
    text-decoration: none;
    font-weight: 500;
  }

  .faq-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .tab-btn {
    padding: 10px 24px;
    border-radius: 30px;
    border: 2px solid #42DD69;
    background: white;
    color: #555;
    font-family: 'Sarabun', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
  }

  .tab-btn:hover {
    border-color: #e84c1e;
    color: #e84c1e;
  }

  .tab-btn.active {
    background: #1EE857;
    border-color: #1EE857;
    color: white;
  }

  .faq-section {
    display: none;
  }

  .faq-section.active {
    display: block;
  }

  .faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.07);
    overflow: hidden;
    border: 1px solid #B8B8B8;
    transition: box-shadow 0.25s ease;
  }

  .faq-item:hover {
    box-shadow: 0 4px 16px rgba(232,76,30,0.1);
  }

  .faq-item.open {
    border-color: #42DD69;
    box-shadow: 0 4px 20px rgba(232,76,30,0.12);
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    gap: 16px;
  }

  .faq-question-text {
    font-size: 1rem;
    font-weight: 600;
    color: #1a2744;
    line-height: 1.5;
    flex: 1;
  }

  .faq-item.open .faq-question-text {
    color: #42DD69;
  }

  .faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #42DD69;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: #1a2744;
  }

  .faq-item.open .faq-icon {
    background: #42DD69;
    color: white;
    transform: rotate(180deg);
  }

  .faq-icon svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
  }

  .faq-item.open .faq-answer {
    max-height: 1000px;
    padding: 0 24px 22px;
  }

  .faq-answer-inner {
    font-size: 0.97rem;
    color: #444;
    line-height: 1.85;
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
  }

  .faq-answer-inner ul {
    margin-top: 10px;
    padding-left: 18px;
  }

  .faq-answer-inner li {
    margin-bottom: 6px;
  }

  .contact-box {
    margin-top: 48px;
    background: linear-gradient(135deg, #6B6B6B 100%, #E8E8E8 100%);
    border-radius: 16px;
    padding: 36px 40px;
    text-align: center;
    color: white;
  }

  .contact-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 10px;
  }

  .contact-box p {
    font-size: 0.97rem;
    opacity: 0.85;
    line-height: 1.7;
    margin-bottom: 6px;
  }

  .contact-box a {
    color: #08F44B;
    font-weight: 600;
    text-decoration: none;
  }

  @media (max-width: 600px) {
    .faq-header h1 { font-size: 1.5rem; }
    .faq-question { padding: 16px 18px; }
    .faq-answer { padding: 0 18px; }
    .faq-item.open .faq-answer { padding: 0 18px 18px; }
    .contact-box { padding: 28px 24px; }
  }
</style>/* End custom CSS */