.shared-footer {
    background: #101827;
    color: #FBFBFD;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.shared-footer--minimal {
    padding: 2rem 0 1.5rem;
}

.shared-footer--minimal .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.shared-footer--minimal .footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.125rem;
}

.shared-footer--minimal .footer-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.shared-footer--minimal .footer-link {
    color: #FBFBFD;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.2s;
}

.shared-footer--minimal .footer-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.shared-footer--minimal .footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem 0;
    border-top: 1px solid rgba(251, 251, 253, 0.1);
    text-align: center;
    font-size: 0.875rem;
    opacity: 0.8;
}

.shared-footer--minimal .footer-bottom a {
    color: #FBFBFD;
    text-decoration: none;
    opacity: 0.9;
}

.shared-footer--minimal .footer-bottom a:hover {
    opacity: 1;
    text-decoration: underline;
}

.shared-footer--full {
    padding: 4rem 0 1.5rem;
}

.shared-footer--full .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.shared-footer--full .footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.shared-footer--full .footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.shared-footer--full .footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.shared-footer--full .logo-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shared-footer--full .brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FBFBFD;
    letter-spacing: -0.02em;
}

.shared-footer--full .footer-tagline {
    color: rgba(251, 251, 253, 0.8);
    font-size: 0.875rem;
    margin: 0;
}

.shared-footer--full .footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.shared-footer--full .footer-section {
    display: flex;
    flex-direction: column;
}

.shared-footer--full .footer-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
    color: #FBFBFD;
}

.shared-footer--full .footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.shared-footer--full .footer-link {
    color: rgba(251, 251, 253, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.shared-footer--full .footer-link:hover {
    color: #FBFBFD;
}

.shared-footer--full .footer-bottom {
    padding: 2rem 0 0;
    border-top: 1px solid rgba(251, 251, 253, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.shared-footer--full .footer-copyright {
    font-size: 0.875rem;
    color: rgba(251, 251, 253, 0.8);
}

.shared-footer--full .footer-copyright p {
    margin: 0;
}

.shared-footer--full .footer-eu-badge {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    opacity: 0.7;
}

.shared-footer--full .footer-social {
    display: flex;
    gap: 1rem;
}

.shared-footer--full .social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(251, 251, 253, 0.1);
    border-radius: 50%;
    color: #FBFBFD;
    transition: background-color 0.2s;
}

.shared-footer--full .social-link:hover {
    background-color: rgba(251, 251, 253, 0.2);
}

.shared-footer--full .footer-cert {
    display: flex;
    align-items: center;
}

.footer-cert-iframe {
    border: none;
    overflow: hidden;
}

@media (max-width: 768px) {
    .shared-footer--minimal .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .shared-footer--minimal .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .shared-footer--full .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .shared-footer--full .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .shared-footer--full .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}