/* Responsive styles for newsletter section in footer */
@media (max-width: 768px) {
    /* Newsletter section */
    .newsletter-container {
        padding: 0 15px;
    }
    
    .newsletter-icons {
        gap: 15px;
    }
    
    .newsletter-icons i {
        font-size: 20px;
        width: 45px;
        height: 45px;
    }
    
    .newsletter-title {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .newsletter-description {
        font-size: 14px;
    }
    
    /* Form layout fixes */
    .form-row {
        width: 100%;
    }
    
    .form-row .input-container {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .form-group {
        width: 100%;
    }
    
    .form-group input {
        width: 100%;
        margin-bottom: 0;
        height: 45px;
    }
    
    .form-button {
        width: 100%;
    }
    
    .newsletter-btn {
        width: 100%;
        margin-top: 5px;
        height: 45px;
        font-size: 16px;
    }
}

/* Extra small devices (phones, 576px and down) */
@media (max-width: 576px) {
    .footer-top {
        padding: 30px 0;
    }
    
    .newsletter-title {
        font-size: 18px;
    }
    
    .newsletter-description {
        font-size: 13px;
    }
    
    .newsletter-icons i {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
}
