.site-footer {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    padding: 2rem 0;
    border-top: 1px solid rgba(0, 123, 255, 0.1);
    box-shadow: 0 -10px 30px rgba(0, 123, 255, 0.05);
}

.site-footer .footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.site-footer .footer-logo img {
    transition: transform 0.4s ease;
}

.site-footer .footer-logo img:hover {
    transform: scale(1.05) rotate(3deg);
}

.site-footer .footer-text {
    text-align: center;
    flex-grow: 1;
    margin: 0 2rem;
}

.site-footer .footer-text p {
    color: #495057;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.site-footer .footer-tagline {
    display: block;
    color: #6c757d;
    font-size: 0.9rem;
    font-style: italic;
    opacity: 0.7;
}

.site-footer .footer-social-links {
    display: flex;
    align-items: center;
}

.site-footer .social-icon {
    color: #007bff;
    font-size: 1.5rem;
    margin-left: 1rem;
    transition: all 0.4s ease;
    text-decoration: none;
}

.site-footer .social-icon:hover {
    color: #6c757d;
    transform: scale(1.2) rotate(15deg);
}

@media (max-width: 768px) {
    .site-footer .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .site-footer .footer-logo,
    .site-footer .footer-text,
    .site-footer .footer-social-links {
        margin: 1rem 0;
    }
}

