
.community-ai-section{
    padding:60px 0;
}

.community-popup-overlay,
.community-success-overlay{
    display:none;
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.5);
    z-index:9999;
    justify-content:center;
    align-items:center;
}

.community-popup-overlay.active,
.community-success-overlay.active{
    display:flex;
}

.community-popup,
.community-success-box{
    width:100%;
    max-width:500px;
    background:#fff;
    border-radius:16px;
    padding:30px;
    position:relative;
}

.community-popup h3,
.community-success-box h3{
    margin-bottom:20px;
}

.community-popup input,
.community-popup textarea{
    width:100%;
    margin-bottom:12px;
    border:1px solid #ddd;
    border-radius:8px;
    padding:12px;
}

.community-popup textarea{
    height:150px;
    resize:none;
}

.community-popup-close{
    position:absolute;
    right:15px;
    top:15px;
    border:none;
    background:none;
    font-size:24px;
    cursor:pointer;
}

.community-submit-btn{
    width:100%;
    border:none;
    background:#1f7a39;
    color:#fff;
    padding:14px;
    border-radius:30px;
    cursor:pointer;
    font-weight:600;
}



.community-ai-box{
    max-width:900px;
    margin:auto;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:16px;
    padding:30px;
    box-shadow:0 4px 20px rgba(0,0,0,.05);
}

.community-ai-header{
    text-align:center;
    margin-bottom:30px;
}

.community-ai-header h2{
    margin-bottom:10px;
    color:#1f7a39;
    font-size:32px;
    font-weight:700;
}

.community-ai-header p{
    color:#666;
    margin:0;
}

.community-item{
    padding:18px 0;
    border-bottom:1px solid #f0f0f0;
}

.community-item:last-child{
    border-bottom:none;
}

.question{
    font-weight:600;
    margin-bottom:8px;
    color:#333;
}

.question-content{
    font-size:16px;
    margin-bottom:10px;
}

.answer{
    background:#f6faf6;
    border-left:4px solid #1f7a39;
    padding:12px 15px;
    border-radius:8px;
    color:#555;
    line-height:1.6;
}

.community-ai-footer{
    margin-top:30px;
    text-align:center;
}

.community-ai-btn{
    border:none;
    background:#1f7a39;
    color:#fff;
    padding:14px 40px;
    border-radius:30px;
    font-size:15px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.community-ai-btn:hover{
    opacity:.9;
    transform:translateY(-2px);
}

@media(max-width:768px){

    .community-ai-box{
        padding:20px;
    }

    .community-ai-header h2{
        font-size:24px;
    }

}

