.content-section {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 24px;
}

.content-section div:nth-child(odd) {
    background-color: #69a8a3;
}

.content-section div:nth-child(even) {
    background-color: #362b22;
}

.content-section div {
    width: 350px;
    /* height: 380px; */
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

img {
    width: 100%;
}