/* FAQ Section Styles */
.faq-area {
    background: #fff;
    position: relative;
}

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

.faq-title {
    font-family: 'Rubik', sans-serif;
    font-size: 35px;
    font-weight: 500;
    color: #252525;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.faq-item {
    background: #fff;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

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

.faq-item.active {
    border-color: #C81912;
    box-shadow: 0 4px 15px rgba(200, 25, 18, 0.15);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
    background: #fff;
}

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

.faq-item.active .faq-question {
    background: #fff5f5;
    color: #C81912;
}

.faq-question span:first-child {
    font-family: 'Rubik', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #252525;
    flex: 1;
    padding-right: 20px;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.faq-item.active .faq-question span:first-child {
    color: #C81912;
}

.faq-arrow {
    font-size: 20px;
    color: #595B6B;
    transition: all 0.3s ease;
    display: inline-block;
    transform: rotate(0deg);
    font-weight: bold;
    min-width: 25px;
    text-align: center;
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
    color: #C81912;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 30px;
    background: #fff;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 30px 25px 30px;
}

.faq-answer p {
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    line-height: 24px;
    color: #595B6B;
    margin-bottom: 0;
    padding-top: 15px;
}

/* Responsive Styles */
@media only screen and (max-width: 767px) {
    .faq-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .faq-question {
        padding: 18px 20px;
    }
    
    .faq-question span:first-child {
        font-size: 16px;
        padding-right: 15px;
    }
    
    .faq-arrow {
        font-size: 18px;
    }
    
    .faq-answer {
        padding: 0 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .faq-answer p {
        font-size: 14px;
    }
}

@media only screen and (max-width: 480px) {
    .faq-title {
        font-size: 24px;
        margin-bottom: 25px;
    }
    
    .faq-question {
        padding: 15px 15px;
    }
    
    .faq-question span:first-child {
        font-size: 15px;
        padding-right: 10px;
    }
    
    .faq-answer {
        padding: 0 15px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 15px 15px 15px;
    }
}


