 .faq-header {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
     padding: 80px 0 50px;
 }

 .faq-category {
     margin-bottom: 30px;
 }

 .faq-item {
     border: 1px solid #e9ecef;
     border-radius: 10px;
     margin-bottom: 15px;
     overflow: hidden;
 }

 .faq-question {
     background: #f8f9fa;
     padding: 20px;
     cursor: pointer;
     border: none;
     width: 100%;
     text-align: left;
     font-weight: 600;
     display: flex;
     justify-content: between;
     align-items: center;
 }

 .faq-answer {
     padding: 0 20px;
     max-height: 0;
     overflow: hidden;
     transition: all 0.3s ease;
 }

 .faq-answer.show {
     padding: 20px;
     max-height: 500px;
 }

 .search-box {
     max-width: 500px;
     margin: 0 auto 40px;
 }

 .contact-card {
     background: #f8f9fa;
     border-radius: 15px;
     padding: 30px;
     text-align: center;
 }
 .faq-item {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1rem;
    background: #f8f9fa;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
}

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

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    background: white;
    transition: all 0.3s ease;
}

.faq-answer.show {
    padding: 1rem;
    max-height: 500px;
}

.faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
}