.newsletter-section {
    padding: 0px;
    background: #392F5A;
    position: relative;
    overflow: hidden;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 250px;
    height: 250px;
    background: #99AA38;
    border-radius: 50%;
    opacity: 0.08;
}

.newsletter-row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.newsletter-img {
    flex: 0 0 280px;
}

.newsletter-img img {
    width: 100%;
}

.newsletter-content {
    flex: 1;
}

.newsletter-content h2 {
    font-size: 28px;
    color: #F6F8FF;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 25px;
}

.newsletter-content h2 span {
    color: #99AA38;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 500px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border-radius: 50px;
    border: 2px solid transparent;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-form input:focus {
    border-color: #99AA38;
}

.newsletter-form button {
    padding: 15px 30px;
    background: #99AA38;
    color: #0A210F;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #7a8a2a;
    color: #fff;
}

@media (max-width: 767.98px) {
    .newsletter-row { flex-direction: column; text-align: center; }
    .newsletter-img { flex: 0 0 200px; }
    .newsletter-content h2 { font-size: 22px; }
    .newsletter-form { flex-direction: column; max-width: 100%; margin: 0 auto; }
    .newsletter-form button { width: 100%; }
}

@media (max-width: 575.98px) {
    .newsletter-content h2 { font-size: 20px; }
    .newsletter-img { flex: 0 0 150px; }
}