.siteFooter {
    max-width: 100%;
    background-color: var(--color-blue-50);
    color: white;
    padding: 60px 20px 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 0 auto;
}

.siteFooter__inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.footerTop {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.footerAppStoreLinks {
    display: flex;
    flex-direction: row;
    gap: 0.25rem;
    align-items: center;
    justify-content: center;
}

.app-store-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 60px;
    flex-shrink: 0;
}

.app-store-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}


.footerBrand {
    flex: 0 0 250px;
    max-width: 250px;
}

.footerLeft .logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: white;
    gap: 0.5rem;
    text-align: center;
}

.footerLeft .logo .brandAndLogo {
    height: 4rem;
    width: auto;
}

.footerBrand p {
    margin: 16px 0 8px;
    line-height: 1.6;
    color: #666;
}

.footerSocials {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.footerSocials a {
    color: white;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.footerSocials a:hover {
    color: var(--color-cyan-teal);
}

.footerLinks {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.footerLinkGroups {
    flex: 1 1 160px;
    display: flex;
    flex-direction: column;
    padding-bottom: 1rem;
}

.footerLinkGroups h5 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    font-weight: bold;
    color: white;
}

.footerLinkGroups ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footerLinkGroups li {
    margin-bottom: 8px;
}

.footerLinkGroups a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footerLinkGroups a:hover {
    color: var(--color-cyan-teal);
}

.footerBottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    font-size: 0.9rem;
    border-top: 1px solid var(--color-cyan-teal);
    padding-top: 1rem;
}

.footerBottom .legal a {
    margin-left: 16px;
    color: #999;
    text-decoration: none;
}

.footerBottom .legal a:hover {
    color: #6A4FC2;
}

@media (max-width: 768px) {
    .footerTop,
    .footerLinks,
    .footerBottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footerTop {
        gap: 20px;
    }

    .footerLinks {
        gap: 20px;
    }

    .footerBottom {
        gap: 10px;
        text-align: center;
    }

    .footerBrand,
    .footerLinkGroups {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .footerLeft .logo {
        align-items: center;
        text-align: center;
    }
}
