.faq-part {
    padding: 60px 0;
    background: #f8f9fa;
}

.faq-intro {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 50px;
    border-radius: 15px;
    margin-bottom: 50px;
    text-align: center;
}

.faq-intro h3 {
    color: white;
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.faq-intro p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 17px;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.faq-category h4 {
    color: #333;
    font-size: 28px;
    margin-bottom: 30px;
    font-weight: 700;
    display: flex;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 3px solid #667eea;
}

.faq-category h4 i {
    color: #667eea;
    font-size: 32px;
    margin-right: 15px;
}

.jobs-category h4 {
    border-bottom-color: #28a745;
}

.jobs-category h4 i {
    color: #28a745;
}

.realty-category h4 {
    border-bottom-color: #007bff;
}

.realty-category h4 i {
    color: #007bff;
}

.rental-category h4 {
    border-bottom-color: #fd7e14;
}

.rental-category h4 i {
    color: #fd7e14;
}

.payment-category h4 {
    border-bottom-color: #dc3545;
}

.payment-category h4 i {
    color: #dc3545;
}

.safety-category h4 {
    border-bottom-color: #6f42c0;
}

.safety-category h4 i {
    color: #6f42c0;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 20px;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #667eea;
    transform: translateX(5px);
}

.faq-question:hover h5 {
    color: white;
}

.faq-question h5 {
    color: #333;
    font-size: 19px;
    font-weight: 600;
    margin: 0;
    transition: color 0.3s ease;
}

.faq-question i.fa-chevron-down {
    color: #667eea;
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-question.active i.fa-chevron-down {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 20px 15px;
    display: none;
    animation: fadeIn 0.3s ease;
}

.faq-answer.show {
    display: block;
}

.faq-answer p {
    color: #555;
    font-size: 16px;
    line-height: 1.9;
    margin: 0;
}

.faq-answer p strong {
    color: #667eea;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-cta {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 50px;
    border-radius: 15px;
    margin-top: 40px;
    text-align: center;
}

.faq-cta h4 {
    color: white;
    font-size: 32px;
    margin-bottom: 15px;
    font-weight: 700;
}

.faq-cta p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.faq-contact-box {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 20px;
}

.contact-option {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-10px);
}

.contact-option i {
    font-size: 40px;
    color: #667eea;
    margin-bottom: 15px;
}

.contact-option h5 {
    color: #333;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-option p {
    color: #667eea;
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-option span {
    color: #888;
    font-size: 14px;
}

@media (max-width: 768px) {
    .faq-intro h3 {
        font-size: 28px;
    }
    
    .faq-intro p {
        font-size: 15px;
    }
    
    .faq-category {
        padding: 25px;
    }
    
    .faq-category h4 {
        font-size: 22px;
    }
    
    .faq-question h5 {
        font-size: 17px;
    }
    
    .faq-answer p {
        font-size: 15px;
    }
    
    .faq-contact-box {
        grid-template-columns: 1fr;
    }
    
    .faq-cta h4 {
        font-size: 26px;
    }
}