footer {
    margin-top: 40px;
    background: #102033;
    color: white;
}

.footer-container {
    max-width: 1300px;
    margin: auto;
    padding: 40px 20px;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-brand h3 {
    margin-top: 0;
    font-size: 28px;
    color: #4fd17f;
}

.footer-brand p {
    color: #d8e2dc;
    line-height: 1.6;
}

.footer-links h4 {
    margin-bottom: 12px;
    color: white;
}

.footer-links a {
    display: block;
    color: #d8e2dc;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: #4fd17f;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    padding: 16px;
    color: #c6d1cb;
    font-size: 14px;
}

@media (max-width: 800px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
}