.faq-area {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.faq-header {
    margin-bottom: 60px;
}

.faq-badge {
    display: inline-block;
    background: linear-gradient(
 180deg,
 #ffd64a 0%,
 #f28a1a 40%,
 #d82a10 75%,
 #1b1b1b 100%
);
    color: white;
    padding: 8px 20px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.faq-title {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin: 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: none;
    background: none;
    width: 100%;
}

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

.faq-question:hover h4 {
    color: #28a745;
}

.faq-question:hover .faq-icon {
    color: #28a745;
}

.faq-question h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    text-align: left;
    flex: 1;
    padding-right: 20px;
    transition: all 0.3s ease;
}

.faq-item.active .faq-question h4 {
    color: #28a745;
}

.faq-icon {
    font-size: 20px;
    font-weight: 600;
    color: #000000;
    transition: all 0.3s ease;
    min-width: 20px;
    text-align: center;
}

.faq-item.active .faq-icon {
    color: #28a745;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    background-color: #f8f9fa;
}

.faq-answer p {
    margin: 0;
    padding: 0 25px 25px 25px;
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

/* Active state */
.faq-item.active .faq-question {
    background-color: #28a745;
    color: white;
}

.faq-item.active .faq-question h4 {
    color: #28a745;
}

.faq-item.active .faq-icon {
    color: #28a745;
    transform: rotate(45deg);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-area {
        padding: 60px 0;
    }
    
    .faq-title {
        font-size: 28px;
    }
    
    .faq-question {
        padding: 15px 20px;
    }
    
    .faq-question h4 {
        font-size: 15px;
        padding-right: 15px;
        color: #000000;
    }
    
    .faq-item.active .faq-question h4 {
        color: #28a745;
    }
    
    .faq-answer p {
        padding: 0 20px 20px 20px;
        font-size: 14px;
    }
    
    .faq-icon {
        font-size: 18px;
        color: #000000;
    }
    
    .faq-item.active .faq-icon {
        color: #28a745;
    }
}

@media (max-width: 576px) {
    .faq-title {
        font-size: 24px;
    }
    
    .faq-question {
        padding: 12px 15px;
    }
    
    .faq-question h4 {
        font-size: 14px;
        padding-right: 10px;
        color: #000000;
    }
    
    .faq-item.active .faq-question h4 {
        color: #28a745;
    }
    
    .faq-answer p {
        padding: 0 15px 15px 15px;
        font-size: 13px;
    }
    
    .faq-icon {
        color: #000000;
    }
    
    .faq-item.active .faq-icon {
        color: #28a745;
    }
}