/* --- Footer Styling --- */
.site-footer {
    background-color: #46484c;
    /* Deep blue background */
    color: #fff;
    padding: 40px 0 10px 0;
    font-size: 0.9rem;
}

/* --- Updated Footer Styling --- */

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    /* 1. Increased gap from 20px to 50px (Adjust this to your liking) */
    gap: 50px;
    padding: 0 20px;
    flex-wrap: wrap;
}

.footer-col {
    /* 2. Changed flex to '0 1 auto' to prevent columns from stretching 
       awkwardly when the gap is large */
    flex: 0 1 auto;
    min-width: 200px;
    margin-bottom: 20px;
}

/* 3. Optional: If you want the columns to be perfectly equal 
   with large spacing, use this instead: */
/* .footer-col { flex: 1; min-width: 200px; } */


.footer-col h4 {
    color: #FFA500;
    /* Accent color for headings */
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.footer-col p {
    margin-bottom: 10px;
}

.footer-col a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #FFA500;
    text-decoration: underline;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col .logo {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-col .logo **strong** {
    color: #FFA500;
}

.social-icons a {
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Bottom copyright bar */
.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 20px;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-col {
        min-width: 100%;
    }
}