.footer-section {
    width: 100%;
    padding: 172px 0 62px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 164px;
    text-align: center;
}

.footer-cta h2 {
    font-family: var(--font-serif);
    font-size: 54px;
    line-height: 65px;
    font-weight: 400;
    margin-bottom: 4px;
    letter-spacing: -1.08px;
    color: #000;
}

.footer-cta p {
    font-family: var(--font-ui);
    font-size: 20px;
    font-weight: 400;
    color: #484848;
    margin-bottom: 40px;
}

.footer-cta-button {
    height: 48px;
    background-color: #000;
    color: #fff;
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.footer-nav {
    width: 100%;
    max-width: 1440px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 48px;
}

.footer-nav-column {
    display: flex;
    flex-direction: column;
    min-width: 140px;
}

.footer-nav-column h3 {
    font-family: var(--font-ui);
    font-size: 12px;
    font-weight: 400;
    margin-bottom: 8px;
    line-height: 17px;
    text-transform: uppercase;
    color: #484848;
}

.footer-nav-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-column li {
    margin-bottom: 10px;
}

.footer-nav-column a {
    font-family: var(--font-ui);
    font-size: 16px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer-nav-column a:hover {
    opacity: 1;
    color: #000;
}

.footer-bottom {
    width: 100%;
    max-width: 1440px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #d7d7d7;
    padding-top: 32px;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal a {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 400;
    color: #484848;
    text-decoration: none;
}

.footer-version-number {
    font-family: var(--font-ui);
    font-size: 14px;
    font-weight: 400;
    color: #484848;
}

@media (max-width: 768px) {
    .footer-nav {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-nav-column {
        width: calc(50% - 20px);
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }

    .footer-cta h2 {
        font-size: 40px;
    }
}
