/* Base footer styles */
.footer {
    box-shadow: 0 -1px 3px rgba(0, 0, 0, 0.1);
    color: #2d3748;
    padding: 1rem;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 100;
    background: white;
    display: flex;
    justify-content: center; /* Center the footer content */
}

.footer-content {
    width: 100%;
    max-width: 1200px; /* Match container width */
    text-align: center;
    font-size: 0.875rem;
    padding: 0 2rem;
}

/* Add padding to main content to prevent footer overlap */
body {
    min-height: 100vh;
    position: relative;
    margin: 0;
    padding-bottom: 60px; /* Adjust based on footer height */
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .footer-sections {
        flex-direction: column;
    }

    .footer-section {
        margin: 1rem 0;
        text-align: center;
    }

    .footer {
        margin-top: 2rem;
    }

    body {
        padding-bottom: 120px;
    }
}

.footer-sections {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
    text-align: left;
}

.footer-section {
    flex: 1;
    margin: 0 1rem;
}

.footer-section h4 {
    color: #2d3748;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-section a {
    display: block;
    color: #4a5568;
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.footer-section a:hover {
    color: #2d3748;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #e2e8f0;
    padding-top: 1rem;
    text-align: center;
    color: #718096;
} 