@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto';
    font-size: 18px;
}

.main-container {
    max-width: 1440px;
    margin: 0 auto;
}

.header-logo img {
    width: 40px;
    height: 60px;
}

.page-header {
    background-color: #1F2937;
    padding: 2rem 10rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}


.nav-links a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 400;
    color: #E5E7EB;
    padding: 0 .5rem;
}

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

.hero-text p {
    font-size: 18px;
    color: #E5E7EB;
    font-weight: 400;
}

.hero-text button {
    border: none;
    background-color: #3882F6;
    font-size: 18px;
    color: #F9FAF8;
    font-weight: 700;
    padding: .6rem 1.5rem;
    border-radius: .5rem;
}

.hero-main img {
    width: 580px;
    display: block;
}

.hero-main {
    background-color: #1F2937;
    padding: 8rem 10rem;
    display: flex;
    justify-content: space-between;
    gap: 5rem;
}

.hero-text {
    padding-block: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.hero-info {
    padding-top: 4rem;
    padding-bottom: 8rem;
    padding-left: 8rem;
    padding-right: 8rem;
    background-color: #f5f5f5;
}

.image-text img {
    width: 200px;
}

.hero-info h1 {
    font-size: 36px;
    font-weight: 900;
    color: #1F2937;
    text-align: center;
    margin-bottom: 3rem;
}

.image-text-container {
    display: flex;
    justify-content: space-between;
}

.image-text p {
    margin-top: 0.3rem;
    text-align: center;
    font-size: 18px;
    color: #1F2937;
}

.hero-quote {
    background-color: #E5E7EB;
    padding: 6rem 10rem;
}

.quote-text {
    font-size: 36px;
    color: #1F2937;
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 300;
    font-style: italic;
}

.quote-by {
    text-align: right;
    padding-right: 4rem;
    font-weight: 900;
}

.hero-singup {
    padding: 8rem 0rem;
}

.blue-box {
    background-color: #3882F6;
    border-radius: 0.5rem;
    padding: 2.5rem 10rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.blue-boox-text h1 {
    color: #F9FAF8;
    font-weight: 700;
}

.blue-boox-text p {
    color: #E5E7EB;
}

.blue-box button {
    padding: 0.4rem 1.8rem;
    color: #F9FAF8;
    font-size: 18px;
    font-weight: 700;
    background-color: #3882F6;
    border: 2px solid #F9FAF8;
    border-radius: 0.5rem;
}

footer {
    text-align: center;
    padding-block: 2rem;
    color: #F9FAF8;
    background-color: #1F2937;
    font-size: 18px;
}