/* Footer Styles */
footer {
    padding: 60px 0 30px;
    background: #1F2937;
    color: white;
    -webkit-font-smoothing: auto;
    -moz-osx-font-smoothing: auto;
}

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

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

.footer-column h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-column p,
.footer-column a {
    color: #9CA3AF;
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #00B4D8;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #374151;
    text-align: center;
    color: #9CA3AF;
}

/* Mobile Footer Adjustments */
@media (max-width: 768px) {
    footer {
        padding: 30px 0 20px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 20px;
    }
    
    .footer-column {
        text-align: center;
        padding: 0;
    }
    
    .footer-column h3 {
        font-size: 16px;
        margin-bottom: 10px;
        text-align: center;
        color: white;
    }
    
    .footer-column p {
        text-align: center;
        font-size: 14px;
        margin: 5px 0;
    }
    
    .footer-column ul {
        text-align: center;
        padding: 0;
        margin: 0;
    }
    
    .footer-column ul li {
        margin-bottom: 5px;
        text-align: center;
        font-size: 14px;
    }
    
    .footer-bottom {
        padding-top: 15px;
        font-size: 12px;
        text-align: center !important;
    }
    
    .footer-bottom p {
        text-align: center !important;
        margin: 0;
        padding: 0;
    }
}