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

a {
    text-decoration: none;
}

.header {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
}

.logo {
    color: #F9FAF8;
    font-size: 24px;
    font-weight: 600;
}

.links {
    display: flex;
    gap: 30px;
}

.links a, a:visited, a.logo-link:visited {
    color: #F9FAF8;
}

.links a:hover {
    color: #f9faf89f;
}

a.logo-link, a.logo-link:visited {
    color: #F9FAF8;
}

a.logo-link:hover {
    color: #3882F6;
}

.hero {
    background-color: #1F2937;
    display: flex;
    flex-direction: column;
    padding: 0 100px 50px 100px;
}

h1.hero-title { 
    font-size: 48px;
    color: #F9FAF8;
    font-weight: 900;
    margin: 0;
}

.hero-container {
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 90px 0 50px 0;
    gap: 20px;
}

.hero-card1, .links {
    color: #E5E7EB;
    font-size: 18px;
}

.hero-card1 {
    width: 50%;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-btn {
    width: 130px;
    background-color: #3882F6;
    color: #E5E7EB;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 30px 10px 30px;
    border: none;
    border-radius: 7px;
}

.hero-btn a {
    color: #E5E7EB;
    display: block;
    width: 100%;
    height: 100%;
}

.hero-btn a:visited {
    color: #E5E7EB;
}

.hero-card2 {
    width: 50%;
    flex: 0 0 600px;
}

.hero-img {
    max-width: 100%;
    height: auto;
    align-self: center;
}

.content {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0 150px 50px 150px;
    gap: 20px;
}

.box1 {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 30px;
}

.box1-images {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}

.item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.img-box1, .img-box2, .img-box3, .img-box4 {
    width: 150px;
    height: 150px;
    border-radius: 13px;
    border: 4px solid #3882F6;
    display: flex;
    flex-shrink: 0;
}

.txt-box1, .txt-box2, .txt-box3, .txt-box4 {
    width: 150px;
    height: 150px;
    text-align: center;
}

.box2 {
    background-color: #E5E7EB;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 50px 0 50px 0;
}

.quote {
    font-size: 36px;
    color: #1F2937;
    font-weight: 300;
    padding: 0 300px 50px 300px;
}

.author {
    display: flex;
    align-self: flex-end;
    padding-right: 350px;
    font-size: 24px;
    text-align: right;
    font-weight: bold;
}

.box3 {
    padding: 30px 0 0 0;    
}

.call-to-action {
    background-color: #3882F6;
    color: #E5E7EB;
    border-radius: 7px;
    padding: 30px 100px 30px 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

.cta-btn {
    width: 130px;
    background-color: #3882F6;
    color: #E5E7EB;
    font-size: 18px;
    font-weight: 500;
    padding: 10px 30px 10px 30px;
    border: 2px solid #F9FAF8;
    border-radius: 7px;
}

.cta-btn a {
    color: #E5E7EB;
    display: block;
    width: 100%;
    height: 100%;
}

.cta-btn a:visited {
    color: #E5E7EB;
}

.footer {
    background-color: #1F2937;
    color: #F9FAF8;
    font-size: 12px;
    display: flex;
    justify-content: center;
    padding: 15px;
}