/* Footer Styles */
.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    margin-top: auto;
    padding: 40px 0 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-section h3,
.footer-section h4 {
    color: #3498db;
    margin-bottom: 15px;
    font-weight: bold;
}

.footer-section h3 {
    font-size: 1.5em;
}

.footer-section h4 {
    font-size: 1.2em;
}

.footer-section p {
    line-height: 1.6;
    margin-bottom: 10px;
    color: #bdc3c7;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    margin: 0;
    color: #95a5a6;
    font-size: 0.9em;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .site-footer {
        padding: 30px 0 15px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
}

/* Ensure footer stays at bottom */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1;
}
