/* General styles */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: "Roboto", sans-serif;
}

ul{
    list-style-type: none;
}

a{
    text-decoration: none;
}

.flex{
    display: flex;
    align-items: center;
}

/* Hero Section */

.hero{
    background-color: #1F2937;
    height: 90vh;
    flex-direction: column;
    justify-content: start;
    padding: 16px 10%;
}

.header{
    width: 100%;
    justify-content: space-between; 
}

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

.link-list{
    gap: 16px;
}

.header-link{
    color: #e5e7eb;
    font-size: 16px;
}

.hero-content{
    width: 100%;
    margin: auto 0;
    justify-content: center;
    gap: 50px;
}

.hero-content-left{
    width: 40%;
    flex: 1 2.4 0;
}

.hero-title{
    font-size: 48px;
    font-weight: 800;
    color: #f9faf8;
    margin-bottom: 16px;
}

.hero-text{
    font-size: 18px;
    color: #e5e7eb;
    margin-bottom: 16px;
    font-weight: 300;
}

.hero-btn{
    background-color: #3882f6;
    color: #f9faf8;
    padding: 8px 16px;
    border-style: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
}

.hero-image{
    width: 40%;
    height: auto;
    border: 2px solid #e5e7eb;
    flex: 1.2 1 0;
}

/* Info section */

.info-section{
    background-color: #f9faf8;
    height: 70vh;
}

.info-section-title{
    color: #1f2937;
    font-weight: 800;
    font-size: 36px;
    text-align: center;
    padding: 40px;
}
.cards{
    justify-content: center;
    gap: 40px;
    margin: auto 0;
}

.card{
    width: 15vw;
    
}

.card-image{
    width: 15vw;
    height: 15vw;
    border: 5px solid #3882f6;
    border-radius: 20%;
    margin-bottom: 10px;
}

.card-info{
    padding: 10px 18px;
    text-align: center;
    font-size: 16px;
    color: #1f2937;
}

/* Section with quote */

.quote-section{
    height: 60vh;
    background-color: #e5e7eb;
    justify-content: center;
}

.quote{
    color: #1F2937;
    font-size: 36px;
    font-weight: 300;
    width: 60vw;
}

.author{
    display: block;
    text-align: right;
    font-weight: bold;
    font-size: 24px;
}

/* Call to action section */

.call-to-action-section{
    background-color: #f9faf8;
    height: 50vh;
    justify-content: center;
}

.call-to-action-box{
    height: 25vh;
    width: 75vw;
    background-color: #3882f6;
    border-radius: 25px;
    justify-content: space-evenly;
}

.call-to-action-title{
    font-size: 24px;
    font-weight: 600;
    color: #f9faf8;
}

.call-to-action-text{
    font-size: 16px;
    color: #e5e7eb;
    font-weight: 300;
}

.sign-up-btn{
    color: #f9faf8;
    padding: 12px 24px;
    border-style: none;
    border-radius: 12px;
    border: 2px solid #f9faf8;
    font-weight: 600;
    font-size: 20px;
    background-color: #3882f6;
}

/* footer */
.footer{
    height: 15vh;
    background-color: #1F2937;
    justify-content: center;
    color: #e5e7eb;
    font-size: 20px;
    font-weight: 300;
}