body {
    font-family: 'Roboto';
    margin: 0;
    padding: 0;
}

.header {
    background-color: #1F2937;
    color: #F9FAF8;
    padding: 20px 300px 80px;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

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

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

.nav-links a {
    color: #E5E7EB;
    text-decoration: none;
    font-size: 18px;
    margin-left: 24px;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    gap: 40px
}

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

.hero-text p {
    color: #F9FAF8;
    font-size: 18px;
    margin-bottom: 24px;
    max-width: 500px;
}

.hero-text button {
    background-color: #3882F6;
    color: #F9FAF8;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    padding: 10px 24px;
}

.hero-image img {
    width: 500px;
    height: 250px;
    background-color: #6B7280;
    object-fit: cover;
}

.info-section {
    text-align: center;
    padding: 80px 20px;
}

.info-section h2 {
    font-size: 36px;
    font-weight: 900;
    color: #1F2937;
    margin: 0 0 40px;
}

.info-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}
  
.info-item {
    max-width: 160px;
}
  
.info-item img {
    width: 150px;
    height: 150px;
    /* border: 2px solid #3882F6; */
    border-radius: 12px;
    display: block;
    margin: 0 auto 12px;
}
  
.info-item-text {
    font-size: 14px;
    color: #1F2937;
}

.quote-section {
    display: flex;
    justify-content: center;
    padding: 80px 0px;
    background-color: #E5E7EB;
}

.quote-container {
    max-width: 820px;
    padding: 0 20px;
}

.quote-text {
    color: #1F2937;
    font-size: 36px;
    font-style: italic;
    font-weight: 300;
    line-height: 1.4;
    margin: 0;
}

.quote-author {
    font-weight: bold;
    text-align: right;
    font-size: 20px;
    color: #1F2937;
    margin-top: 20px;
}

.call-to-action-container {
    background-color: #3882F6;
    color: #E5E7EB;
    margin: 80px auto;
    max-width: 900px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 80px;
}

.call-to-action-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
gap: 8px;
}

.call-to-action-text h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

.call-to-action-text p {
    margin: 0;
    font-size: 16px;
}

.call-to-action-container .cta-button {
    background-color: transparent;
    border: 2px solid #E5E7EB;
    color: #E5E7EB;
    font-size: 16px;
    border-radius: 8px;
    padding: 10px 24px;
    text-decoration: none;
    font-weight: bold;
}

.cta-button {
    background-color: #3882F6;
    color: #F9FAF8;
    padding: 10px 24px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
}

.footer {
    background-color: #1F2937;
    color: #F9FAF8;
    padding: 30px 40px;
    text-align: center;
}

.footer p {
    margin: 0;
}