/* General Styling */
body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

/* Footer Styling */
.footer {
    background-color: #0c3572;
    color: #fff;
    padding: 40px 0;
    text-align: center; /* Center content */
}

/* Container to wrap footer columns */
.footer .containersss {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center columns horizontally */
    align-items: flex-start; /* Align columns to the top */
    max-width: 1200px;
    margin: 0 auto; /* Center container */
    padding: 0 20px; /* Add some padding */
}

/* Footer Column Styling */
.footer-column {
    flex: 1;
    min-width: 250px; /* Ensure columns don't shrink too small */
    margin: 20px;
    text-align: left; /* Align text to the left for better readability */
}

/* Header Styles for Footer Sections */
.footer-column h3, .footer-column h4 {
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

/* Footer Text Paragraph */
.footer-column p {
    line-height: 1.6;
    font-size: 1rem;
}

/* Footer Lists Styling */
.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

/* Footer Icons */
.footer-column ul li i {
    margin-right: 10px;
}

/* Footer Bottom Styling */
.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid #444;
    margin-top: 20px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom .social-icons {
    margin-top: 10px;
}

.footer-bottom .social-icons a {
    color: #fff;
    margin: 0 20px;
    text-decoration: none;
    font-size: 24px;
}

.footer-bottom .social-icons a:hover {
    color: #ddd;
}

/* Responsive Design */

/* For tablets and smaller devices */
@media (max-width: 1024px) {
    .footer-column {
        flex: 1 1 48%; /* Make columns take up half the space on tablets */
        margin: 10px;
    }
}

/* For mobile devices */
@media (max-width: 768px) {
    .footer-column {
        flex: 1 1 100%; /* Stack columns vertically on small screens */
        margin: 10px 0;
    }

    .footer-column h3, .footer-column h4 {
        font-size: 1.1rem; /* Slightly reduce heading size */
    }

    .footer-column p {
        font-size: 0.9rem; /* Slightly reduce text size for mobile */
    }

    .footer-bottom p {
        font-size: 0.9rem; /* Adjust text size for the footer bottom on mobile */
    }
}

/* For very small mobile devices */
@media (max-width: 480px) {
    .footer-column h3, .footer-column h4 {
        font-size: 1rem; /* Further reduce heading size for very small screens */
    }

    .footer-column p {
        font-size: 0.8rem; /* Reduce text size even more */
    }

    .footer-bottom .social-icons a {
        font-size: 20px; /* Smaller social media icon size */
    }
}
