@import url('https://fonts.googleapis.com/css2?family=Libertinus+Sans:ital,wght@0,400;0,700;1,400&display=swap');

body{
    display: flex;
    flex-direction: column;
    align-items: center;
}

section{
    font-family: "Libertinus Sans", sans-serif;
    width: 70%;
    padding: 0;
    margin-top: 20px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}
dl dt{
    font-weight: bold;
    font-size: 16px;
}
dl dd{
    margin: 0 10px;
    max-width: 700px;
}
dl{
    padding: 0;
    margin: 0;
}
.description-item{
    min-height: 100px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
}
.benefits-container{
    display: none;
    height: 0px;
    transition: height 250ms ease-in-out 0ms;
    background: #eca202;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 100%;
}
.benefits-container h2{
    text-align: center;
    margin: 0;
}
.header-container{
    padding: 20px;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.header-container h2{
    text-align: center;
}
.header-container p{
    text-align: center;
    padding: 0 10% 20px 10%;
}
.readmore-button{
    background: transparent;
    width: 100px;
    border: none;
    background: #eca202;
    padding: 10px;
}
#top-content{
    margin-top: 200px;
}
#bottom-content{
    margin-bottom: 100px;
}
.image-container{
    width: 60%;
}
@media (max-width: 900px){
    #bottom-content{
        margin-bottom: 130px;
    }
    .image-container{
        width: 80%;
    }
}
@media (max-width: 600px){
    section{
        width: initial;
        margin-top: 0;
        padding: 0;
    }
    #top-content{
        margin-top: 130px;
    }
    #bottom-content{
        margin-bottom: 100px;
    }
}