.footer {
    background: #111;
    color: white;
    padding: 48px 64px;
    border-radius: 32px;
    margin: 0 0px;
    margin-bottom: 25px;
}

.container {
    max-width: 1350px;
    margin: 0 auto;
    position: relative;
    padding: 0 48px;
}

/* Logo and tagline section */
.footer-left {
    max-width: 300px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 16px;
}

.tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
    line-height: 1.4;
    margin: 0;
}

/* Navigation layout - Updated to match design */
.footer-nav {
    position: absolute;
    right: 0;
    top: 0;
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 48px;
}

.nav-group {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.nav-group a {
    color: white;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.nav-group a:hover {
    opacity: 0.7;
}

/* Divider line */
.footer-divider {
    border: none;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 64px 0 32px;
}

/* Bottom section */
.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin-bottom: 0px;
}

.copyright {
    display: block;
    margin-bottom: 0px;
}

.legal-links {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer {
        padding: 32px 24px;
        border-radius: 0;
        margin: 0;
    }

    .container {
        padding: 0;
    }

    .footer-left {
        max-width: 100%;
        text-align: center;
        margin-bottom: 32px;
    }

    .footer-nav {
        display: none;
    }

    .footer-bottom {
        margin-top: 32px;
    }

    .legal-links {
        flex-direction: column;
        gap: 12px;
        margin-top: 16px;
    }

    .copyright {
        margin-bottom: 16px;
    }
} 