.newsletter-signup-wrapper {
    padding: 80px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.ns-icon {
    margin-bottom: 24px;
}

.ns-heading {
    font-family: "Georgia", "Times New Roman", serif;
    font-size: 42px;
    font-weight: normal;
    margin: 0 0 16px;
}

.ns-description {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.6;
    color: #4a4a4a;
}

.ns-form {
    display: flex;
    width: 85%;
    max-width: 800px;
    gap: 16px;
    justify-content: center;
}

.ns-input {
    flex: 1;
    height: 54px;
    border: 1px solid #ccc;
    border-radius: 30px;
    padding: 0 24px;
    font-size: 16px;
    outline: none;
}

.ns-input:focus {
    border-color: #8BA68E;
}

.ns-button {
    height: 54px;
    border: none;
    border-radius: 30px;
    padding: 0 40px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff !important;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.ns-button:hover {
    opacity: 0.9;
}

@media (max-width: 767px) {
    .ns-form {
        flex-direction: column;
        width: 100%;
        max-width: 400px;
    }
    
    .ns-heading {
        font-size: 32px;
    }
    
    .ns-input, .ns-button {
        width: 100%;
    }
}
