/* Footer Styles */
.site-footer {
    background-color: #f8f9fa;
    padding: 30px 0 0 0;
    font-family: 'Ubuntu', sans-serif;
    color: black;
    font-size: 16px;
    border-top: 1px solid #e7e7e7;
}

.footer-container { 
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 0 20px;
}

/* Logo Section */
.footer-logo-section {
    grid-column: span 1;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 15px;
}

.footer-about-text {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #333;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #31458C;
    color: white;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #1a2a5e;
    transform: translateY(-3px);
}

/* Links Section */
.footer-links-section h3,
.footer-category-section h3,
.footer-contact-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-section h3:after,
.footer-category-section h3:after,
.footer-contact-section h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #31458C;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
    color: black;
}

.footer-links li a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links li a:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #31458C;
}

.footer-links li a:hover {
    color: #31458C;
}

/* Contact Section */
.footer-contact-info {
    list-style: none;
    padding: 0;
}

.footer-contact-info li {
    list-style: none;
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #333;
}

.footer-contact-info li i {
    margin-right: 15px;
    color: #31458C;
    min-width: 16px;
}

.footer-contact-info p {
    color: #333;
    margin: 0;
    font-size: 14px;
}

/* Footer Bottom */
.footer-bottom {
    background-color: #f1f1f1;
    text-align: center;
    padding: 15px 0;
    margin-top: 30px;
    border-top: 1px solid #e7e7e7;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}