/* Basic Styling */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-content {
    flex: 1;
}

/* Footer Styling */
.site-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 40px 20px;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-about, .footer-links, .footer-social {
    flex: 1;
    padding: 10px;
    min-width: 250px;
}

.footer-about h3, .footer-links h3, .footer-social h3 {
    color: #ffffff;
    border-bottom: 2px solid #3498db;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.footer-about p {
    line-height: 1.6;
    color: #ecf0f1;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #3498db;
}

.footer-social .social-icons {
    display: flex;
}

.footer-social .social-icons a {
    color: #ecf0f1;
    margin-right: 15px;
    font-size: 20px; /* Using text for icons for now */
    text-decoration: none;
    transition: color 0.3s ease;
}

/* You can use an icon font like Font Awesome here */
.footer-social .social-icons a:hover {
    color: #3498db;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #34495e;
    color: #ecf0f1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-about, .footer-links, .footer-social {
        width: 100%;
        margin-bottom: 20px;
    }
    .footer-social .social-icons {
        justify-content: center;
    }
} 