.site-footer {
    background-color: #ffffff;
    padding: 4rem 2rem;
    font-family: 'Special Gothic', sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: #21362c;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
    font-family: 'Special Gothic', sans-serif;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #21362c65;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6666;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #eee;
    gap: 2rem;
    align-items: center;
}

.app-downloads {
    display: flex;
    gap: 1rem;
}

.app-button img {
    height: 40px;
    width: auto;
}

.certifications {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}

.certifications img {
    height: 40px;
    width: auto;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.certifications img:hover {
    opacity: 1;
}

.social-links {
    gap: 1rem;
}


.social-link svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.social-link-bg {
    background-color: #21362c;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .app-downloads,
    .certifications,
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .app-downloads {
        flex-direction: column;
        align-items: center;
    }
} 