body {
    font-family: "Roboto", sans-serif;
    margin: 0;
    min-height: 100vh;
}

.header {
    display: flex;
    background-color: #1F2937;
    align-items: center;
    justify-items: center;
    padding: 16px 152px;
}

.links-left {
    margin-left: auto;
    display: flex;
    gap: 24px;
}

a {
    text-decoration: none;
    color: #E5E7EB;
    font-size: 18px;
}

.header-logo-text {
    color: #F9FAF8;
    font-size: 24px;
}

.hero {
    display: flex;
    background-color: #1F2937;
    align-items: center;
    justify-items: center;
    padding: 16px 152px;
    gap: 52px;
}

.hero-secondary-text {
    color: #E5E7EB;
    font-size: 18px;
}

.hero-main-text {
    color: #F9FAF8;
    font-size: 48px;
    font-weight: 900;
}

.hero-image {
    background-color: grey;
    height: 216px;
    width: 384px;
    line-height: 13;
    text-align: center;
    display: flex;
    flex-shrink: 0;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-button {
    background-color: #3882F6;
    color: #E5E7EB;
    font-size: 18px;
    max-width: fit-content;
    padding: 4px 24px;
    font-weight: bold;
    border-radius: 8px;
    border: none;
}

.information-heading {
    display: flex;
    justify-content: center;
    padding: 16px;
    font-weight: 900;
    font-size: 36px;
    color: #1F2937;
    margin-top: 12px;
}

.cards {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 0;
    flex-wrap: nowrap;
}

.card {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 150px;
    text-align: center;
    flex-shrink: 0;
}

.card-image {
    border: 2px solid #3882F6;
    border-radius: 8px;
    margin: 12px;
    padding: 50px 30px;
}

.text {
    margin-bottom: 120px;
}

.quote {
    background-color: #E5E7EB;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: end;
    padding: 100px 300px;
}

.quote-text {
    font-size: 36px;
    font-style: italic;
    color: #1F2937;
    font-weight: lighter;
    padding: 8px;
}

.quote-author {
    font-size: 36px;
}

.cta {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cta-box {
    margin: 64px;
    padding: 24px 96px;
    background-color: #3882F6;
    color: #E5E7EB;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.cta-left {
    display: flex;
    flex-direction: column;
}

.cta-headline {
    font-weight: bold;
    padding-bottom: 4px;
}

.cta-button {
    border: 1px solid white;
    border-radius: 4px;
    background-color: #3882F6;
    color: white;
    padding: 4px 16px;
}

.footer {
    display: flex;
    background-color: #1F2937;
    color: #E5E7EB;
    align-items: center;
    justify-content: center;
    padding: 24px;
}