.main-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-bottom: 1em;
}

.section {
    max-height: fit-content;
    padding: 10px;
    background-color: #f8e48f; /* Background color matching your design */
    margin-bottom: 10px;
    border-radius: 10px;
    box-shadow: #c27f10 4px 4px 4px;
}

.section h3 {
    margin: 0;
    border-radius: 5px;
}

.section h3.active {
    background-color: #e0e0e0;
}

.section p {
    margin-top: 5px;
}

#heading {
    grid-area: heading;
    text-shadow: #c27f10 4px 4px 4px;
}

#kg-img {
    grid-area: image;
    width: 35vw;
    border-radius: 10px;
    border: solid 10px white;
    box-shadow: #c27f10 4px 4px 4px;

}

#expertise {
    grid-area: expertise;
}

#expertise p {
}

#knowledge-graphs {
    grid-area: kg;
}

#ai {
    grid-area: ai;
    height: fit-content;
}

#neo4j-expertise {
    display: grid;
    grid-template-areas:
        'heading heading'
        'image expertise'
        'image kg'
        'ai ai';
    gap: 1em;
    justify-content: start;
    align-items: start;
    max-width: 75vw;
}

#the-how {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    text-align: start;
}

#the-how li {
    margin-left: 2em;
    padding-bottom: 1em;
}

