#Generic .connectBtn2 {
    border-radius: 38px;
    background-color: #fc4f02 !important;
    width: 350px;
    display: block;
    text-align: center;
    padding: 20px 20px;
    font-size: 16px;
    color: #fff;
}

#Generic .connectBtn3 {
    border-radius: 38px;
    background-color: #fc4f02 !important;
    width: 260px;
    display: block;
    text-align: center;
    padding: 20px 20px;
    font-size: 14px;
    color: #fff;
}

#Generic .connectBtn4 {
    border-radius: 38px;
    background-color: #fc4f02 !important;
    width: 260px;
    display: block;
    text-align: center;
    padding: 20px 20px;
    font-size: 14px;
    color: #fff;
}

#Generic .herosection-main {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

#Generic .Arrowicon {
    background: #fff;
    padding: 10px;
    border-radius: 50%;
    margin-left: 6px;
    vertical-align: middle;
}

#Generic .feature-list2 {
    list-style: none;
    margin: 25px 0 0 0;
    padding: 0;
}

#Generic .feature-list2 li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

#Generic .feature-list2 .icon {
    margin-right: 12px;
    flex-shrink: 0;
}

#Generic .feature-list2 .text {
    display: flex;
    flex-direction: column;
}

#Generic .feature-list2 .icon img {
    margin-top: 7px;
    display: block;
    width: 20px;
}

#Generic .feature-list2 b {
    display: block;
    margin-bottom: 10px;
}

#Generic .mcp-highlight {
    border: 1px solid #FC4F02;
    border-radius: 16px;
    padding: 30px 25px;
    background: #FFF5EF;
}

#Generic .agent-task-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 50px;
    margin-top: 20px;
}

#Generic .agent-task-item {
    display: flex;
    align-items: flex-start;
}

#Generic .agent-task-item img {
    margin-right: 15px;
    margin-top: 7px;
    display: block;
    width: 20px;
}

#Generic .agent-task-item span {
    line-height: 1.8;
}

#Generic .mcp-accordion {
    width: 100%;
}

#Generic .mcp-item {
    background: #fff;
    border-radius: 18px;
    padding: 25px 30px;
    margin-bottom: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
    transition: all .3s ease;
}

#Generic .mcp-item.active {
    border: 2px solid #FC4F02;
}

#Generic .mcp-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    cursor: pointer;
}

#Generic .mcp-left {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    width: 92%;
}

#Generic .mcp-number {
    width: 90px;
    flex-shrink: 0;
}

#Generic .mcp-text {
    flex: 1;
}

#Generic .mcp-text h4 {
    margin: 0;
    font-family: 'poppins-bold';
    line-height: normal;
}

#Generic .mcp-content {
    margin-top: 10px;
    line-height: 1.7;
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

#Generic .mcp-item.active .mcp-content {
    max-height: max-content;
}

#Generic .mcp-arrow {
    width: 18px;
    transition: transform .3s ease;
    margin-top: 10px;
}

#Generic .mcp-item.active .mcp-arrow {
    transform: rotate(180deg);
}

#Generic .main-box {
    display: flex;
    gap: 40px;
    width: 100%;
    padding-bottom: 20px;
}

#Generic .boxhover3 {
    border-radius: 5px;
    box-shadow: 0 0px 20px 0 rgba(0, 0, 0, 10%);
    display: flex;
    color: #000000;
    background-color: rgba(255, 255, 255, 0.1);
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 30px;
    border: 2px solid #ffffff00;
    transition: border-color 0.5s ease;
    cursor: pointer;
    width: 50%;
    height: auto;
}

#Generic .boxhover3:hover {
    border: 2px solid #FC4F02;
}

#Generic .icons-1 {
    width: 50px;
    margin-right: 20px;
}

#Generic .main-contained {
    color: #000000;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-bottom: 50px;
}

#Generic .faq-contained {
    width: 100%;
    border-radius: 12px;
}

#Generic .faq-item {
    border-bottom: 1px solid #C8D3DE;
    padding: 25px 0;
}

#Generic .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    outline: none;
}

#Generic .faq-question h5 {
    font-size: 20px;
    font-family: 'poppins-bold';
    line-height: normal;
}

#Generic .faq-question .arrow {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

#Generic .faq-item .faq-question .arrow {
    transform: rotate(180deg);
    width: 20px;
}

#Generic .faq-item.active .faq-question .arrow {
    transform: rotate(0deg);
}


#Generic .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out;
    outline: none;
}


#Generic .faq-item.active .faq-answer {
    max-height: 250px !important;
    padding-top: 10px;
    width: 90%;
}



@media (max-width: 768px) {
    #Generic .herosection-right {
        margin-top: 20px;
        display: flex;
        justify-content: center;
    }

    #Generic .agent-task-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    #Generic .mcp-item {
        padding: 20px;
    }

    #Generic .mcp-left {
        gap: 15px;
    }

    #Generic .mcp-number {
        width: 60px;
    }

    #Generic .main-box {
        flex-direction: row;
        gap: 30px;
        padding-bottom: 0px;
    }

    #Generic .boxhover3 {
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    #Generic .herosection-main {
        flex-direction: column;
    }

    #Generic .connectBtn2 {
        border-radius: 38px;
        background-color: #fc4f02 !important;
        width: 290px;
        display: block;
        text-align: center;
        padding: 20px 20px;
        font-size: 14px;
        color: #fff;
    }

    #Generic .connectBtn4 {
        border-radius: 38px;
        background-color: #fc4f02 !important;
        width: 250px;
        display: block;
        text-align: center;
        padding: 20px 20px;
        font-size: 14px;
        color: #fff;
    }

    #Generic .main-box {
        flex-direction: column;
        gap: 0;
        padding-bottom: 0px;
    }

    #Generic .boxhover3 {
        height: auto;
        display: flex;
        /* flex-direction: column; */
        align-items: flex-start;
        width: 100%;
        margin-bottom: 20px;
    }
}