.newsletterSection {
    background-color: #001824;
}
.newsletterSection > .newsletterSectionContainer {
    max-width: 794px;
    margin: 0 auto;
    padding: 60px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.newsletterSection > .newsletterSectionContainer > h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 32px;
    color: #ececec;
    text-align: center;
    max-width: 420px;
}
.newsletterSection > .newsletterSectionContainer > .newsletter-form {
    width: 100%;
    max-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.newsletterSection > .newsletterSectionContainer > .newsletter-form > input {
    padding: 11px;
    border-radius: 10px;
    background-color: #fff;
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color: #000;
}
.newsletterSection > .newsletterSectionContainer > .newsletter-form > input::placeholder {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color: #00000073;
}
.newsletterSection > .newsletterSectionContainer > .newsletter-form > button {
    width: 100%;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 14px;
    color: #001F2E;
    background-color: #ececec;
    padding: 13px;
    border-radius: 10px;
}
@media (max-width: 767px) {
    .newsletterSection > .newsletterSectionContainer {
            padding: 50px 20px;
            flex-direction: column;
        }
    .newsletterSection > .newsletterSectionContainer > h3 {
            font-size: 28px;
            line-height: 32px;
        }
    .newsletterSection > .newsletterSectionContainer > .newsletter-form {
            max-width: unset;
        }
}
