.echron-faq .box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.echron-faq .box .faq-box {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
    flex: 0 0 70%;
    padding: 0 15px;
}

.echron-faq .box .faq-box .heading {
    flex: 0 0 100%;
    text-align: center;
}

.echron-faq .box .faq-box .heading h1 {
    font-size: 35px;
    line-height: 30px;
}

.echron-faq .box .faq-box .heading h3 {
    font-weight: normal;
    position: relative;
    width: fit-content;
    margin: auto;
}

.echron-faq .box .faq-box .heading h3::before {
    position: absolute;
    content: '';
    width: 60%;
    height: 5px;
    background-color: #023d1b;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.echron-faq .box .faq-box .faq {
    flex: 0 0 100%;
}

.echron-faq .box .faq-box .faq li {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
}

.echron-faq .box .faq-box .faq li:last-child {
    margin-bottom: 0;
}

.echron-faq .box .faq-box .faq li .btn {
    border-radius: 50%;
    background-color: #f5f5f5;
    flex: 0 0 auto;
    text-align: center;
    cursor: pointer;
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 55px;
}

.echron-faq .box .faq-box .faq li .btn.active {
    background-color: #023d1b;
    color: #fff;
}

.echron-faq .box .faq-box .faq li .btn span {
    font-size: 30px;
}

.echron-faq .box .faq-box .faq li .data .ans {
    display: none;
    padding-top: 20px;
}

.echron-faq .box .faq-box .faq li .data .ans.active {
    display: block;
}

.echron-faq .box .faq-box .rgt {
    flex: 0 0 100%;
    height: 50vh;
}

.echron-faq .box .rght {
    flex: 0 0 auto;
    max-width: 28%;
    border-radius: 5px;
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    margin-top: 30px;
}

.echron-faq .box .rght img {
    width: 100%;
    display: block;
}