.topic-summary {
    background-color: rgb(230, 243, 239);
    border-left: 5px solid rgb(65, 131, 105);
    padding: 15px 20px;
    margin: 2% 0;
    border-radius: 5px;
}

.list-term4 {
    margin: 2% 0;
    background-color: rgb(230, 243, 239);
    padding: 2rem;
    border-radius: 5px;
}

.term-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.term {
    background-color: rgb(209, 233, 223);
    padding: 10px 16px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
}

.img-display-clear {
    width: 100%;
    margin: 2% 0;
}

.img-display-clear img {
    width: 100%;
    height: auto;
    display: block;
}

.topic-display-three {
    margin: 2% 0;
    padding: 1.5rem;
    background-color: rgb(232, 243, 237);
    border-radius: 5px;
    box-shadow: 4px 4px rgb(179, 206, 196);
}

.topic-display-three .topic-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.image-container {
    flex: 1;
    max-width: 45%;
}

.display-img {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

.text-container {
    flex: 1;
    max-width: 50%;
}

@media (max-width: 768px) {
    .topic-display-three {
        padding: 1rem;
    }

    .topic-content {
        flex-direction: column;
    }

    .image-container {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .text-container {
        max-width: 100%;
    }
}