﻿.footer-cta {
    padding: 80px 0;
    background: linear-gradient( 135deg, var(--primary), #1565C0);
    color: #fff;
}

.footer-cta-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}

.footer-cta h2 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 20px;
    max-width: 650px;
}

.footer-cta p {
    color: rgba(255,255,255,.85);
    max-width: 600px;
}

.footer-buttons {
    display: flex;
    gap: 20px;
}
.main-footer {
    background: #0A1E3F;
    padding-top: 80px;
    color: #fff;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-logo {
    width: 220px;
    margin-bottom: 30px;
}

.main-footer h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 20px;
}

.main-footer ul {
    padding: 0;
}

.main-footer li {
    margin-bottom: 12px;
}

.main-footer a {
    color: #D8E0F0;
}

    .main-footer a:hover {
        color: #fff;
    }

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 25px;
}

    .social-icons a {
        width: 42px;
        height: 42px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
        background: rgba(255,255,255,.08);
    }

        .social-icons a:hover {
            background: var(--accent);
        }

.footer-bottom {
    margin-top: 70px;
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,.08);
}

.footer-bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .footer-bottom-wrapper div {
        display: flex;
        gap: 25px;
    }