/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    padding: 40px 0;
    margin-top: 50px;
    position: relative;
    width: 100%;
}

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

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    color: #4CAF50;
    font-size: 20px;
    font-weight: bold;
    gap: 10px;
}

.footer-logo img {
    max-height: 40px;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #4CAF50;
}

.footer-copyright {
    text-align: center;
    color: #95a5a6;
    font-size: 14px;
}
