body {
    background-color: #FFFBEB;
    margin: 0;
    text-align: center;
}

.logo {
    margin-top: 32px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 200px;
    height: auto;
}

.hero {
    width: 100%;
    margin-top: 25vh;
    margin-bottom: 25vh;
    display: block;
    height: auto;
}

.content-section {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
    flex-wrap: wrap;
}
.column {
    flex: 1;
    padding: 20px;
    text-align: left;
}

#threeWords{
    width: fit-content;
}

.column h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 40pt;
    font-weight: 600;
    color: #232433;
    margin: 0;
    line-height: 1.2;
}
.column p {
    font-family: 'Outfit', sans-serif;
    font-size: 16pt;
    font-weight: 400;
    color: #232433;
    line-height: 1.5;
}
@media (max-width: 768px) {
    .content-section {
        margin: 16px;
        flex-direction: column;
    }
    .column {
        width: 100%;
        text-align: left;
    }
}