.home-faq-section {
    padding: 50px 0 60px;
    background: #ffffff;
}

.home-faq-container {
    max-width: 100%;
    margin: 0 auto;
}

.home-faq-title {
    font-size: 32px;
    font-weight: 700;
    color: #212121;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
}

.home-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}

.home-faq-item {
    border: 1px solid #e8ecef;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.home-faq-item:hover {
    border-color: #d0d5dc;
}

.home-faq-item.active {
    border-color: #e8ecef;
}

.home-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: #ffffff;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 14px;
    font-weight: 600;
    color: #212121;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: all 0.2s ease;
}

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

.home-faq-item.active .home-faq-question {
    background: #fafafa;
}

.home-faq-icon {
    flex-shrink: 0;
    margin-left: 15px;
    color: #00acc1;
    transition: transform 0.3s ease;
}

.home-faq-item.active .home-faq-icon {
    transform: rotate(180deg);
}

.home-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.home-faq-answer p {
    padding: 0 20px 20px;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #666666;
}

.home-faq-more {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #00acc1;
    padding: 16px 20px;
    border-radius: 6px;
    text-decoration: none;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.2s ease;
}

.home-faq-more:hover {
    background: #0097a7;
    transform: translateX(5px);
}

.home-faq-more svg {
    flex-shrink: 0;
    margin-left: 10px;
}

@media (max-width: 767px) {
    .home-faq-title {
        font-size: 24px;
    }
    
    .home-faq-question {
        font-size: 13px;
        padding: 14px 16px;
    }
    
    .home-faq-answer p {
        font-size: 13px;
        padding: 0 16px 16px;
    }
    
    .home-faq-more {
        font-size: 12px;
        padding: 14px 16px;
    }
}
