/* Footer Top Section Styles */

.footer-top-section {
    background-color: #000;
    padding: 3.5rem 0;
    width: 100%;
}

.footer-top-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.footer-top-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.footer-top-heading {
    color: #fff;
    margin-bottom: 3.5rem;
}

.footer-top-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}



/* Responsive styles */
@media (max-width: 992px) {
    .footer-top-section {
        padding: 60px 0;
    }
    
    .footer-top-heading {
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .footer-top-section {
        padding: 50px 0;
    }
    
    .footer-top-heading {
        margin-bottom: 25px;
    }
    
    .footer-top-buttons {
        gap: 12px;
    }
    

}

@media (max-width: 576px) {
    .footer-top-section {
        padding: 40px 0;
    }
    
    .footer-top-heading {
        margin-bottom: 20px;
    }
    
    .footer-top-buttons {
        flex-direction: column;
        
        margin: 0 auto;
    }
    
   
} 