.footer {
    background: rgba(14, 116, 144, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 4rem 1rem 0 1rem;
    padding: 2rem 0 1rem;
    border-radius: 16px 16px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 0 20px;
}

.footer-section h4 {
    color: #64ffda;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p,
.footer-section a {
    color: #8892b0;
    margin-bottom: 0.5rem;
    text-decoration: none;
}

.footer-section a:hover {
    color: #64ffda;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #64ffda;
    text-decoration: none;
    padding: 0.25rem 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #00d4aa;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #8892b0;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
} 