.condition-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 2rem;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.condition-text {
    flex: 1;
    min-width: 300px;
}

.condition-text p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #333;
}

.condition-text h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding: 0;
    color: #333;
}

.condition-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.condition-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 500px;
    object-fit: cover;
}

.condition-list {
    gap: 1rem;
    display: flex;
    flex-direction: column;
}

.condition-code {
    font-weight: bold;
}

.condition-list li {
    text-align: justify;
}

@media (max-width: 768px) {
    .condition-container {
        flex-direction: column;
        padding: 1rem;
    }

    .condition-image {
        order: -1;
        /* Image on top on mobile if desired, remove if not */
        width: 100%;
    }
}