.newsletter-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    max-width: 400px;
    width: 90%;
    text-align: center;
}
.newsletter-popup img{
    width: 60%;
}
.newsletter-popup-content {
    position: relative;
}

.close-popup {
    position: absolute;
    top: -10px;
    right: -10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.newsletter-form input {
    padding: 12px;
    border: none;
    border-radius: 0;
    background: #FFE4E1;
    width: 100%;
}

.newsletter-form button {
    padding: 12px 20px;
    background: #E85C33;
    color: white;
    border: none;
    border-radius: 0;
    width: 100%;
    font-size: 16px;
    text-transform: none;
}

.newsletter-form button:hover {
    opacity: 0.9;
}

.newsletter-popup h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #000;
}

.newsletter-popup p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}