html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
    margin: 0;
    padding: 0;
}

body {
    font-family: Roboto;
    background-color: #1F2937;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 18px 216px;
}

header h1 {
    color: #f9faf8;
    font-size: 24px;
}

header nav {
    display: flex;
    gap: 36px;
}

header nav a,
.hero p {
    color: #e5e7eb;
    font-size: 18px;
    text-decoration-line: none;
}

.hero {
    display: flex;
    justify-content: space-between;
    margin: 108px 216px;
    gap: 72px;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1;
}

.hero-right {
    background-color: #6f747c;
    flex: 1;
    height: 252px;
    min-width: 516px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero h1 {
    color: #f9faf8;
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 18px;
}

.hero-left p {
    margin-bottom: 18px;
}

.hero button {
    background-color: #3882f6;
    color: #e5e7eb;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    height: 44px;
    padding: 0px 16px;
    cursor: pointer;
}

.information {
    background-color: #fff;
    padding: 54px 324px 108px;
}

.information h2 {
    color: #1f2937;
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 54px;
}

.info-image-set {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 36px;
}

.information figure {
    color: #777;
    text-align: center;
    font-weight: 500;
    font-size: 18px;
    width: 172px;
    flex: 1 0 172px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.information figcaption {
    width: 172px;
}

.information a {
    color: #777;
}

.info-image {
    height: 172px;
    width: 172px;
    border: 4px solid #3882f6;
    border-radius: 16px;
    margin-bottom: 8px;
}

aside {
    background-color: #e5e7eb;
    padding: 108px 324px;
}

blockquote {
    color: #1f2937;
    font-style: italic;
    font-size: 36px;
    font-weight: 300;
    margin-bottom: 8px;
}

.quote-attribution {
    color: #1f2937;
    text-align: right;
    font-size: 24px;
    font-weight: 900;
}

.cta-section {
    background-color: white;
    padding: 108px 216px;
}

.call-to-action,
.call-to-action button {
    background-color: #3882f6;
    color: #fff;
}

.call-to-action {
    height: 150px;
    padding: 16px;
    border-radius: 8px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
}

.call-to-action h2 {
    margin-bottom: 4px;
}

.call-to-action p {
    color: #e5e7eb;
}

.call-to-action button {
    font-size: 16px;
    font-weight: 600;
    border: 2px solid white;
    border-radius: 8px;
    height: 44px;
    padding: 0px 16px;
    cursor: pointer;
}

footer {
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e5e7eb;
    margin: 18px 216px;
}