.newsletter-section {
    width: 100%;
    background: #171b34;
    color: #ffffff;
    padding: 38px 20px 42px;
    box-sizing: border-box;
}
.newsletter-content {
    width: 100%;
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}
.newsletter-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 16px;
}
.newsletter-icon svg {
    width: 100%;
    height: 100%;
    fill: none;
    stroke: #ffffff;
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.newsletter-content h2 {
    margin: 0 0 14px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 29px;
    line-height: 1.08;
    font-weight: 700;
    color: #ffffff;
}
.newsletter-description {
    margin: 0 0 15px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #ffffff;
}
.newsletter-form {
    width: 100%;
    max-width: 388px;
    height: 36px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: 3px;
    overflow: hidden;
}
.newsletter-form input {
    width: 100%;
    height: 100%;
    padding: 0 48px 0 10px;
    border: 0;
    outline: none;
    background: transparent;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 11px;
    box-sizing: border-box;
}
.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.28);
}
.newsletter-form input:-webkit-autofill,
.newsletter-form input:-webkit-autofill:hover,
.newsletter-form input:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff;
    -webkit-box-shadow: 0 0 0 1000px #171b34 inset;
}
.newsletter-form button {
    position: absolute;
    top: 0;
    right: 0;
    width: 42px;
    height: 100%;
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #ffffff;
    transition: background 0.25s ease, transform 0.25s ease;
}
.newsletter-form button svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.25s ease;
}
.newsletter-form button:hover {
    background: rgba(255,255,255,0.08);
}
.newsletter-form button:hover svg {
    transform: translateX(3px);
}
.newsletter-form:focus-within {
    border-color: #ffffff;
}
.newsletter-policy {
    max-width: 390px;
    margin: 13px auto 0;
    text-align: left;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 7px;
    line-height: 1.5;
    color: rgba(255,255,255,0.75);
}
.newsletter-policy a {
    color: rgba(255,255,255,0.9);
    text-decoration: underline;
}
.newsletter-policy a:hover {
    color: #ffffff;
}
@media (max-width: 768px) {
    .newsletter-section {
        padding: 35px 20px 38px;
    }
    .newsletter-content h2 {
        font-size: 27px;
    }
    .newsletter-form {
        max-width: 420px;
    }
}
@media (max-width: 480px) {
    .newsletter-section {
        padding: 30px 18px 34px;
    }
    .newsletter-icon {
        width: 52px;
        height: 52px;
        margin-bottom: 14px;
    }
    .newsletter-content h2 {
        font-size: 25px;
    }
    .newsletter-description {
        font-size: 11px;
        padding: 0 10px;
    }
    .newsletter-form {
        max-width: 100%;
        height: 40px;
    }
    .newsletter-policy {
        font-size: 7px;
    }
}
