/* Newsletter Component Animations */
@keyframes spin {
    0% { 
        transform: rotate(0deg); 
    }
    100% { 
        transform: rotate(360deg); 
    }
}

/* Responsive overrides for newsletter component */
@media (max-width: 768px) {
    .newsletter-section { 
        padding: 3rem 0 !important; 
    }
    
    .newsletter-title { 
        font-size: 1.875rem !important; 
        margin-bottom: 1rem !important;
    }
    
    .newsletter-description { 
        font-size: 1rem !important; 
        margin-bottom: 1.5rem !important;
    }
    
    .newsletter-form { 
        padding: 1.5rem !important; 
    }
    
    .email-input-group { 
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .subscribe-btn { 
        width: 100% !important; 
    }
    
    .email-wrapper {
        min-width: auto !important;
    }
}

@media (max-width: 576px) {
    .newsletter-section {
        padding: 2.5rem 0 !important;
    }
    
    .newsletter-title { 
        font-size: 1.5rem !important; 
        margin-bottom: 0.75rem !important;
    }
    
    .newsletter-description {
        font-size: 0.875rem !important;
        margin-bottom: 1rem !important;
    }
    
    .newsletter-form { 
        padding: 1.25rem !important; 
        margin: 0 !important;
    }
    
    .newsletter-form-wrapper {
        max-width: none !important;
    }
    
    .email-input-group {
        margin-bottom: 1rem !important;
    }
    
    .privacy-text {
        font-size: 0.75rem !important;
    }
}

/* Fix container spacing issues */
@media (max-width: 576px) {
    .newsletter-section .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}