/* --- Newsletter --- */
.newsletter-box {
    background: linear-gradient(135deg, #a55c65, #9e3d4d);
    padding: 60px 40px;
    /* More padding */
    border-radius: 24px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 50px rgba(170, 58, 76, 0.25);
    position: relative;
    overflow: hidden;
}

/* Decorative Circles */
.newsletter-box::before,
.newsletter-box::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    /* Very subtle overlay */
    z-index: 0;
}

.newsletter-box::before {
    top: -100px;
    left: -100px;
}

.newsletter-box::after {
    bottom: -100px;
    right: -100px;
}

.newsletter-content {
    position: relative;
    z-index: 1;
}

.newsletter-content h3 {
    font-family: 'Great Vibes', cursive;
    /* Matching image style */
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: white;
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.newsletter-content p {
    font-size: 1.1rem;
    line-height: 2.2;
    /* AIRY TEXT */
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    opacity: 0.95;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    gap: 15px;
    max-width: 600px;
    margin: 0 auto 20px;
    flex-wrap: wrap;
}

.newsletter-form input {
    flex: 1;
    min-width: 250px;
    padding: 15px 25px;
    border-radius: 50px;
    border: none;
    outline: none;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.newsletter-form button {
    background: #4a4a4a;
    /* Dark button like image */
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-form button:hover {
    background: #333;
    transform: translateY(-2px);
}

.newsletter-disclaimer {
    font-size: 0.8rem !important;
    /* Force smaller size */
    opacity: 0.7;
    margin-top: 20px;
    font-weight: 300;
}