.accordion-container {
    max-width: 1000px;
    margin: 0 auto;
}

.accordion-item {
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    margin-bottom: 10px;
}

.accordion-header {
    width: 100%;
    padding: 20px 20px 20px 60px;
    font-size: 20px;
    font-weight: bold;
    background-color: #F4F3F2;
    background-repeat: no-repeat;
    background-size: 32px;
    background-position: 20px center;
    color: #333;
    text-align: left;
    cursor: pointer;
    border: none;
    outline: none;
}

.accordion-body {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    display: none;
    margin: 0;
}

.accordion-image-container {
    flex: 1 1 40%;
}

.accordion-image {
    width: 100%;
    height: auto;
    /* border-radius: 8px; */
}

.accordion-content {
    height: 50%;
    background: #fff;
    margin-top: -25%;
    max-width: 60%;
}

.accordion-body p {
    flex: 1 1 300px;
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    text-align: justify;
    padding: 10px;
    height: 50%;
    /* max-width: 60%; */
}

/* Responsive Layout */
@media (max-width: 768px) {
    .accordion-body {
        flex-direction: column;
    }

    .accordion-image,
    .accordion-content,
    .accordion-body p {
        max-width: 100%;
    }
}