body {
    display: flex;
    flex-direction: column;
    margin: 0;
    font-family: Helvetica, Arial, sans-serif
}

.footer {
    background-color: #1F2937;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 72px;
    color: white;
    gap: 8px;
}

.header {
    background-color: #1F2937;
    display: flex;
    color: white;
    height: 400px;
    justify-content: space-between;
    padding-left: 160px;
    padding-right: 160px;
    padding-top: 16px;
}

.left-side {
    display: flex;
    flex-direction: column;
    width: 400px;
    flex-wrap: wrap;
}

.right-side {
    display: flex;
    flex-direction: column;
}

.header-links {
    display: flex;
    gap: 24px;
    list-style-type: none;
    margin: 0;
    justify-content: flex-end;
}

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

.sub-content {
    margin-top: 40px;
}

.sub-content-title {
    font-size: 48px;
    font-weight: bolder;
}

.sign-up {
    background-color: #3882F6;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    border-style: none;
    font-size: 12px;
    padding: 8px 24px;
    text-align: center;
    font-weight: bolder;
    margin-top: 5px;
}

.image-container {
    display: flex;
    height: 500px;
    width: 500px;
    margin-top: 25px;
}

img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 10px;
    height: fit-content;
    width: fit-content;
}

.secondary-content-container {
    display: flex;
    height: 400px;
    flex-direction: column;
}

.secondary-content-title {
    color: black;
    font-weight: bolder;
    font-size: 36px;
    display: flex;
    justify-content: center;
    margin: 40px;
}

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

.info1, .info2, .info3, .info4 {
    border-radius: 15px;
    border: 4px solid #3882F6;
    height: 125px;
    width: 125px;

}

.secondary-content-text {
    display: flex;
    justify-content: center;
    gap: 50px;
}


.infotext1, .infotext2, .infotext3, .infotext4 {
    width: 125px;
    text-align: center;
    margin-top: 10px;
}

.third-content-container {
    display: flex;
    flex-direction: column;
    background-color: #E5E7EB;
    height: 400px;
    justify-content: center;
    align-items: center;
}

.quote {
    font-size: 36px;
    font-style: italic;
    font-weight: 100;
    width: 800px;
}


.author {
    font-weight: bolder;
    font-size: 24px;
    margin-top: 15px;
    text-align: right;
    width: 700px;
}

.final-content {
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.final-content-subcontainer {
    height: 200px;
    width: 1000px;
    background-color: #3882F6;
    display: flex;
    justify-content: space-between;
    border-radius: 10px;

}

.final-left {
    display: flex;
    flex-direction: column;
    justify-content: center; 
    padding-left: 100px; 
}

.final-title {
    color: white;
    font-size: 24px;
    font-weight: bolder;
}

.final-content-subcontent {
    color: white;
    font-weight: lighter;
}

.button-right {
    background-color: #3882F6;
    border-radius: 10px;
    border: 2px solid white;
    color: white;
    margin-right: 100px;
    height: 50px;
    width: 100px;
}

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