body{
    height: 100vh;
    margin: 0;
    font-family: Roboto, sans-serif;
    display: flex;
    flex-direction: column;
}

.header{
    background-color: #1f2937;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.logo{
    color: #f9faf8;
    font-size: 24px;
    font-weight: bold
}

ul{
    list-style: none;
}

a{
    text-decoration: none;
}

.header-links{
    display: flex;
    gap: 20px;
}

.header-links a,
.left-text p{
    color: #e5e7eb;
    font-size: 16px;
    margin: 0;
}

.hero{
    background-color: #1f2937;
    display: flex;
    justify-content: space-evenly;
    padding: 25px 0;
}

.left-text{
    width: 435px;
}

.left-text h1{
    color: #f9faf8;
    font-size: 48px;
    margin-bottom: 0;
}

.left-text p{
    margin-bottom: 20px;
}

.hero-btn{
    background-color: #3882f6;
    color: white;
    padding: 10px 35px;
    border-radius: 8px;
}

.hero img{
    border-radius: 8px;
    height: auto;
    flex: 1;
    max-width: 400px;
}

.information{
    background-color: white;
    text-align: center;
    padding: 50px 25px;
}

.information h2{
    margin-top: 0;
    font-size: 36px;
    color: #152937;
    font-weight: 900;
}

.info-img{
    width:100px;
    height: 100px;
    border: 4px #69a4f6 solid ;
    border-radius: 10px;
}

.info-container{
    display: flex;
    justify-content: center;
    gap: 52px;
}

.card{
    width: 105px;
}

.quote{
    background-color: #e5e7eb;
    padding: 100px;
    text-align: center;
}

.quote p{
    font-size: 36px;
    font-style: italic;
}

.quote span{
    font-weight: 800;
    margin-left: 330px;
}

.call-to-action{
    background-color: white;
    padding: 80px;
}

.cto-container{
    background-color: #3882f6;
    padding: 40px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 150px;
    color: white;
    border-radius: 10px;
}

.cto-text span{
    font-weight: 600;
    margin-top: 10px;
}

.cto-text p{
    margin: 0;
    font-size: smaller;
}

.cto-btn{
    background-color: #3882f6;
    color: white;
    padding: 8px 40px;
    border-radius: 8px;
    border: 2px solid white;
}

footer{
    background-color: #1f2937;
    color: white;
    padding: 35px;
    text-align: center;
}

