.newsletter-section {
    background-color: #768071;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.newsletter-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    padding: 40px;
}

.newsletter-title {
    font-size: 2.2rem;
    color: #fefefe;
    text-align: center;
    margin-bottom: 20px;
}

.newsletter-description {
    text-align: center;
    font-size: 1.2rem;
    color: #fefefe;
    margin-bottom: 30px;
    line-height: 1.6;
}

.newsletter-success {
    background-color: #d4edda;
    color: #155724;
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.newsletter-error {
    background-color: #f8d7da;
    color: #721c24;
    padding: 12px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 15px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #fff;
}

.newsletter-input::placeholder {
    color: #768071;
}

.newsletter-button {
    background-color: #fefefe;
    color: #768071;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .newsletter-section {
        padding: 40px 20px;
    }

    .newsletter-content {
        padding: 20px;
    }

    .newsletter-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .newsletter-description {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 15px;
        max-width: 100%;
    }

    .newsletter-input {
        width: 100%;
        padding: 12px;
        font-size: 1rem;
        box-sizing: border-box;
        background-color: transparent !important;
        border: 1px solid #fefefe !important;
        color: #fefefe !important;
    }

    .newsletter-input::placeholder {
        color: #fefefe !important;
        opacity: 0.8;
    }

    .newsletter-button {
        width: 100%;
        padding: 14px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .newsletter-section {
        padding: 50px 15px;
    }

    .newsletter-title {
        font-size: 1.5rem;
    }

    .newsletter-description {
        font-size: 0.95rem;
    }

    .newsletter-form {
        gap: 12px;
    }
}