.eslam-accordion-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.eslam-accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.eslam-accordion-header {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.eslam-accordion-title {
    color: #fff;
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase;
}

.eslam-accordion-icon {
    position: relative;
    width: 20px;
    height: 20px;
}

.eslam-accordion-icon::before,
.eslam-accordion-icon::after {
    content: '';
    position: absolute;
    background-color: #fff;
    transition: all 0.3s ease;
}

.eslam-accordion-icon::before {
    top: 9px;
    left: 0;
    width: 100%;
    height: 2px;
}

.eslam-accordion-icon::after {
    top: 0;
    left: 9px;
    width: 2px;
    height: 100%;
}

.eslam-accordion-item.active .eslam-accordion-icon::after {
    transform: rotate(90deg);
    opacity: 0;
}

.eslam-accordion-content {
    max-height: 0;
    opacity: 0;
    transition: all 0.5s ease-out;
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.eslam-accordion-item.active .eslam-accordion-content {
    max-height: 1000px;
    opacity: 1;
    padding-bottom: 40px;
}

.eslam-content-left {
    flex: 1;
    max-width: 50%;
}

.eslam-accordion-quote {
    color: #fff;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-transform: uppercase;
}

.eslam-accordion-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

.eslam-content-right {
    flex: 1;
    max-width: 40%;
    display: flex;
    justify-content: center;
}

.eslam-content-right img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

@media (max-width: 768px) {
    .eslam-accordion-content {
        flex-direction: column;
    }

    .eslam-content-left,
    .eslam-content-right {
        max-width: 100%;
    }
}