body {
    font-family: 'Roboto', sans-serif;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1F2937;
    padding: 16px 80px;
}

.header .links ul {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style-type: none;
}

.header a {
    text-decoration: none;
    font-size: 18px;
    color: #E5E7EB;
}

.logo {
    color: #F9FAF8;
    font-size: 24px;
    margin: 0px;
}

.hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 80px 80px;
    background-color: #1F2937;
}

.hero .content {
    max-width: 400px;
}

.hero .main-text {
    font-size: 48px;
    color: #F9FAF8;
    font-weight: 900;
    margin: 0;
}

.hero .secondary-text {
    font-size: 18px;
    color: #E5E7EB;
    margin-top: 4px;
    margin-bottom: 16px;
}

.hero .image {
    background-color:#6D747D;
    color: #E5E7EB;
    width: 400px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.hero button {
    background-color: #3882F6;
    border-radius: 5px;
    border-style: none;
    padding: 6px 24px;
    color: #F9FAF8;
    font-weight: 600;
    font-size: 16px;
}

.info {
    display: flex;
    flex-direction: column;
    padding-bottom: 80px;
}

.info .items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 64px;
}

.info .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 150px;
}

.info .graphic {
    width: 180px;
    height: 180px;
    border-radius: 20px;
    border-color: #3882F6;
    border-style: solid;
}

.info .graphic-desc {
    text-align: center;
    margin-top: 8px;
    color:#6D747D;
}

.info .text {
    font-size: 36px;
    font-weight: 900;
    color: #1F2937;
    text-align: center;
}

.quote-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #E5E7EB;
    padding: 80px 160px;
}

.quote {
    max-width: 800px;
}

.quote .text{
    font-size: 36px;
    font-weight: 300;
    color: #1F2937;
    font-style: italic;
    margin: 0;
    
}

.quote .author {
    text-align: right;
    margin: 0;
    margin-top: 8px;
    font-size: 22px;
    font-weight: 700;
}

.call-to-action-section{
    display: flex;
    justify-content: center;
}

.call-to-action {
    display: flex;
    align-items: center;
    background-color: #3882F6;
    padding: 40px 80px;
    margin: 80px 0px;
    gap: 160px;
    border-radius: 10px;
}

.call-to-action .main-text{
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #F9FAF8;
}

.call-to-action .secondary-text{
    margin: 0;
    font-size: 16px;
    color: #F9FAF8;
}

.call-to-action button {
    background-color: #3882F6;
    border-radius: 5px;
    border-color: #F9FAF8;
    border-style: solid;
    padding: 6px 24px;
    color: #F9FAF8;
    font-weight: 600;
    font-size: 16px;
}

.footer {
    background-color: #1F2937;
}

.footer p{
    color: #F9FAF8;
    text-align: center;
    padding: 40px 0px;
}