* {
    font-family: "Roboto";
    
}

body {
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.header {
    background-color: #1F2937;
    color: white;
    padding: 10px 160px 0 160px;
}

.header-image{
    width: 1200px;
    height: 450px;
    padding: 60px;
    border-radius: 70px;
}

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

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

ul {
    margin: 0;
    padding: 0;
    font-size: 18px;
    list-style: none;
    display: flex;
    gap: 25px;
}

p {
    padding: 0;
    margin: 0;
    padding-top: 5px;
}

h1 {
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: #E5E7EB;
}

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

.header-section {
    display: flex;
    flex-direction: column;
}

.header-button {
    margin: 0;
    margin-top: 10px;
    border: none;
    padding: 10px 15px 10px 15px;
    width: 100px;
    height: auto;
    background-color: #3882F6;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    font-size: 12px;
}

.header-title {
    margin-bottom: 5px;
}

.info-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
    margin: 0;
    gap: 50px;
}

.card,
.card-img {
    width: 200px;
    height: 200px;
}

.card {
    border: solid #3882F6;
    border-radius: 5px;
    text-align: center;
}

.card-container {
    display: flex;
    gap: 80px;
}

.quote-container {
    background-color: #E5E7EB;
    margin: 0;
    padding: 80px 280px 80px 280px;
    margin-top: 150px;
}

.quote,
.author {
    font-size: 36px;
    font-style: italic;
    font-weight: 100;
    margin: 0;
}

.author {
    font-weight: 500;
    text-align: right;
}


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

.cta {
    background-color: #3882F6;
    width: 900px;
    height: auto;
    margin: 50px 100px;
    padding: 30px 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
}

.cta-button {
    display: inline;
    background-color: #3882F6;
    border-radius: 5px;
    border-color: white;
    color: white;
    padding: 10px 45px;
    border-style: solid;
    border-width: 1px;
    font-weight: 800;
    font-size: 16px;
}

.cta-text{
    display: flex;
    color: white;
    padding: 0;
    margin: 0;
    flex-direction: column;
}

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

.footer-text {
    font-weight: 400;
}