.container {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
    padding: 0 1rem;
}

.header {
    position: sticky;
    margin-bottom: 20px;
    top: 0;
    z-index: 100;
    background-color: var(--surface-primary);
    border-bottom: 1px solid var(--border-main);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
}

.logo-image {
    height: 32px;
    width: auto;
}

.footer {
    background-color: var(--surface-secondary);
    border-top: 1px solid var(--border-main);
    padding: 40px 0 30px;
    margin-top: 40px;
}

.footer-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-trust-badges {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
    min-width: 150px;
    flex: 1;
}

.trust-icon {
    width: 24px;
    height: 24px;
    color: var(--text-accent);
}

.trust-badge span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main);
}

.footer-divider {
    height: 1px;
    background-color: var(--border-main);
    width: 100%;
}

.footer-brand {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-logo-img {
    height: 24px;
    width: auto;
    opacity: 0.8;
}

@media (prefers-color-scheme: dark) {
    .footer-logo-img {
        filter: brightness(0) invert(1);
    }
}

.footer-copyright {
    font-size: 12px;
    color: var(--text-muted);
}

.footer-badges {
    display: flex;
    align-items: center;
    gap: 10px;
}

.badge-18 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border: 2px solid #ef4444;
    color: #ef4444;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
}

@media (max-width: 640px) {
    .footer-brand {
        flex-direction: column;
        text-align: center;
    }

    .footer-trust-badges {
        display: grid;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .trust-badge {
        flex-direction: row;
        justify-content: center;
        text-align: left;
    }
}