.faq-section {
    background: #f1f9fb;
    padding: 80px 20px;
    margin: 0 auto;
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    padding: 60px 30px;
}

.faq-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #ff7a00;
    margin-bottom: 40px;
}

.faq-title span {
    background: linear-gradient(135deg, #ff7a00, #ff9500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 60px 20px 30px;
    font-size: 18px;
    font-weight: 600;
    background: #f8fafc;
    border: none;
    text-align: left;
    cursor: pointer;
    position: relative;
    color: #022c3b;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #e2e8f0;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #ff7a00;
    transition: all 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.faq-question.active {
    background: #ff7a00;
    color: white;
}

.faq-question.active::after {
    content: '−';
    color: white;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    background: white;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 20px 0;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.faq-answer.show {
    max-height: 1000px;
    padding: 0 30px;
}

@media (max-width: 768px) {
  .faq-container {
    padding: 40px 20px;
  }

  .faq-title {
    font-size: 28px;
  }

  .faq-question {
    padding: 15px 50px 15px 20px;
    font-size: 16px;
  }

  .faq-question::after {
    right: 15px;
    font-size: 20px;
  }
}