/* Footer Styles */
.web2print-footer {
    background: #e8ecf1;
    border-top: 2px solid #cbd5e0;
    padding: 3rem 0 1.5rem 0;
    margin-top: 4rem;
}

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

.footer-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2.5rem;
}

.footer-column h5 {
    color: #1a202c;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-column p {
    color: #2d3748;
    font-size: 0.9rem;
    line-height: 1.8;
    margin: 0;
}

.footer-column a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu li {
    margin-bottom: 0.75rem;
}

.footer-menu li a {
    display: inline-block;
    padding: 0.25rem 0;
    font-size: 0.9rem;
    position: relative;
}

.footer-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #dc2626;
    transition: width 0.3s ease;
}

.footer-menu li a:hover::after {
    width: 100%;
}

.footer-bottom {
    border-top: 1px solid #cbd5e0;
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    color: #4a5568;
    font-size: 0.85rem;
    margin: 0;
}

.footer-bottom a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-bottom a:hover {
    color: #dc2626;
}

@media (max-width: 992px) {
    .footer-row {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .web2print-footer {
        padding: 2rem 0 1rem 0;
        margin-top: 3rem;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
}
