/* Newsletter Section */
.newsletter-section {
    background: #4a4237;
    padding: 60px 0;
    text-align: center;
}

.newsletter-section h2 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.newsletter-form {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 500px;
    margin: 0 auto 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.newsletter-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    font-size: 1rem;
    background: white;
    color: #333;
    outline: none;
    border-radius: 0;
}

.newsletter-form input::placeholder {
    color: #999;
}

.newsletter-form button {
    padding: 16px 24px;
    background: #dc2626;
    color: white;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    border-radius: 0;
    min-height: 52px;
}

.newsletter-form button:hover {
    background: #b91c1c;
}

.policy-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.policy-text a {
    color: #dc2626;
    text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 40px 20px;
    }
    
    .newsletter-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        max-width: 100%;
        border-radius: 8px;
    }
    
    .newsletter-form input {
        width: 100%;
        border-radius: 8px 8px 0 0;
    }
    
    .newsletter-form button {
        width: 100%;
        border-radius: 0 0 8px 8px;
    }
}

@media (max-width: 480px) {
    .newsletter-section h2 {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        padding: 14px 18px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    .policy-text {
        font-size: 0.8rem;
        padding: 0 10px;
    }
}

/* Focus states for accessibility */
.newsletter-form input:focus {
    box-shadow: inset 0 0 0 2px #dc2626;
}

.newsletter-form button:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}