/* FAQ Styles */
.infetech-faq-area {
    background-color: #f8f9fe;
    position: relative;
    overflow: hidden;
}

.infetech-faq-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/shape/shape-6.png);
    background-position: center;
    background-size: cover;
    opacity: 0.03;
}

.faq-accordion {
    margin-top: 50px;
}

.accrodion {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.accrodion:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.accrodion-title {
    position: relative;
    padding: 25px 60px 25px 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accrodion-title:hover {
    background-color: rgba(95, 45, 238, 0.03);
    border-radius: 8px;
}

.accrodion-title h4 {
    margin: 0;
    font-size: 18px;
    color: #222;
    font-weight: 600;
}

.accrodion-title i {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #5f2dee;
    transition: all 0.3s ease;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
}

.accrodion.active .accrodion-title i.plus {
    opacity: 0;
    visibility: hidden;
}

.accrodion .accrodion-title i.minus {
    opacity: 0;
    visibility: hidden;
}

.accrodion.active .accrodion-title i.minus {
    opacity: 1;
    visibility: visible;
}

.accrodion.active .accrodion-title {
    background-color: rgba(95, 45, 238, 0.03);
    border-radius: 8px 8px 0 0;
}

.accrodion-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 30px;
    transition: all 0.4s ease;
}

.accrodion.active .accrodion-content {
    max-height: 1000px;
    padding: 25px 30px;
}

.accrodion-content .inner {
    border-top: 1px solid rgba(95, 45, 238, 0.1);
    padding-top: 20px;
}

.accrodion-content p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.6;
}

.accrodion-content ul {
    margin: 0;
    padding-left: 20px;
}

.accrodion-content ul li {
    color: #666;
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.accrodion-content ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #5f2dee;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
}

@media (max-width: 767px) {
    .accrodion-title {
        padding: 20px 50px 20px 20px;
    }
    
    .accrodion-title h4 {
        font-size: 16px;
    }
    
    .accrodion.active .accrodion-content {
        padding: 20px;
    }
    
    .accrodion-title i {
        right: 20px;
    }
} 