body {
    font-family: Roboto, 'Open Sans', 'Helvetica Neue', sans-serif;
    margin: 0;
}
/* ==================================================== */
/* Hero Section */
.hero-section, .footer-section{
    background-color: #1F2937;
    padding: 30px;
}

.hero-section {
    margin-bottom: 24px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    text-align: center;
    margin-bottom: 30px;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 16px;
}

a, .hero-content .title-description {
    text-decoration: none;
    color: #E5E7EB;
    font-size: 18px;
}

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

/* Hero Content */
.hero-content{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.hero-text {
    max-width: 500px;
}

.hero-text .title{
    font-size: 48px;
    font-weight: bolder;
    color: #F9FAF8;
    margin-bottom: 12px;
}

.hero-sign-up {
    margin-top: 18px;
    border: none;
    border-radius: 6px;
    background-color: #3882F6;
    color: white;
    font-weight: bold;
    padding: 8px;
}

.hero-image img {
    width: 400px;
    height: auto;
}
/* ==================================================== */
/* Testimonial Section */
.testimonial-section {
    margin-bottom: 24px;
}

.testimonials {
    display: flex;
    justify-content: center;
    gap: 32px;
}
.testimonial {
    max-width: 200px;
}

.testimonial-title {
    font-size: 36px;
    font-weight: bolder;
    color: #1F2937;
    text-align: center;
    margin-bottom: 18px;
}

.testimonial-text {
    color: #414a4c;
}

.testimonial-section img {
    border: 4px solid #3882F6;
    border-radius: 12px;
    width: 200px;
    height: 200px;
}
/* ==================================================== */
/* Quote Section */
.quote-section{
    background-color: #E5E7EB;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 24px;
    margin-bottom: 24px;
}

.quote {
    display: flex;
    flex-direction: column;
    max-width: 800px;
}
.quote-text {
    font-size: 36px;
    font-weight: light;
    font-style: italic;
    color: #1F2937;
    margin-bottom: 12px;
}

.quote-author {
    align-self: flex-end;
    font-weight: bold;
    font-size: 24px;
}
/* ==================================================== */
/* Call to Action Section */
.call-to-action-section{
    display: flex;
    align-items: center;
    justify-content: center;
}

.call-to-action {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #3882F6;
    padding: 48px 96px;
    border-radius: 18px;
    margin-bottom: 24px;
    gap: 48px;
}

.call-title {
    font-weight: bold;
    color: #F9FAF8;
    font-size: 18px;
}

.call-description {
    color: #E5E7EB;
}

.sign-up-call {
    border-color: white;
    background-color: transparent;
    color: white;
    font-weight: bold;
    font-size: 16px;
    border-radius: 6px;
    padding: 6px 18px;
}
/* ==================================================== */
/* Footer Section */
.footer-section{
    text-align: center;
    color: white;
}
