/* Footer Styles */
.footer {
    text-align: center;
    padding: 60px 0 40px 0;
    background: linear-gradient(135deg, #e8f4f8 100%, #d1e7dd 100%);
    border-top: 3px solid #E8F4F8;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, #2C3E50, #4A90E2);
    border-radius: 0 0 2px 2px;
}

.footer-content {
    position: relative;
    z-index: 2;
}

.footer-message {
    font-size: 1.1rem;
    color: #2C3E50;
    font-weight: 600;
    margin-bottom: 15px;
    font-style: italic;
}

.footer-copyright {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #666;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    transform: translateY(-2px);
    color: #4A90E2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}