/* Footer Styles */
footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-top: 1px solid #dee2e6;
    padding: 4rem 0 2rem;
    scroll-snap-align: end;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3436;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.footer-links a {
    color: #636e72;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: #2d3436;
    background-color: rgba(116, 125, 140, 0.1);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding-top: 2rem;
    /* border-top: 1px solid rgba(178, 190, 195, 0.3);  */
}

.footer-bottom p {
    color: #636e72;
    font-size: 0.85rem;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
}

.tologinpage {
    text-decoration: none;
    color: #636e72;
}

/* Mobile Footer Styles */
@media (max-width: 840px) {
    /* ======= Footer Styles ======= */
    footer {
        padding: 3rem 0 1.5rem;
        margin-top: 3rem;
    }
    
    .footer-content {
        padding: 0 1.5rem;
    }
    
    .footer-title {
        font-size: 1.3rem;
        margin-bottom: 1.5rem;
    }
    
    .footer-links {
        /* flex-direction: column; */
        gap: .5rem;
        margin-bottom: .5rem;
    }
    
    .footer-bottom {
        gap: 0.75rem;
        padding-top: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        text-align: center;
    }
}