/* Shared Footer Styles */
.site-footer-wrapper {
    background-color: #eef1f5 !important;
    padding-top: 50px;
    padding-bottom: 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 42px;
    max-width: 1200px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    width: 100%;
    box-sizing: border-box;
}

.footer-brand {
    max-width: 352px;
}

.footer-brand h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 11px;
    color: var(--text-light, rgba(0, 0, 0, 0.5));
}

.footer-brand p {
    font-size: 16px;
    font-weight: 300;
    line-height: 1.2;
    color: var(--text-light, rgba(0, 0, 0, 0.5));
}

.footer-links-group {
    display: flex;
    gap: 100px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h5 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark, rgba(0, 0, 0, 0.8));
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links li {
    font-size: 16px;
}

.footer-links a {
    color: var(--text-light, rgba(0, 0, 0, 0.5));
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color, #125ca7);
}

.footer-bottom {
    padding-top: 20px;
}

.footer-bottom-container {
    max-width: 1200px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    box-sizing: border-box;
}

.footer-divider {
    border: none;
    height: 0.5px;
    background-color: #918c8c;
    margin: 0;
    margin-bottom: 20px;
}

.copyright {
    text-align: center;
    color: var(--text-light, rgba(0, 0, 0, 0.5));
    font-size: 14px;
    margin: 0;
}

.identity-card:hover {
  border-color: #0066ff;
  transform: translateY(-2px);
}

.next-btn:hover {
  background-color: #0052cc;
}

@media (max-width: 1200px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .footer-links-group {
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .footer-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .footer-links-group {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-brand {
        max-width: 100%;
    }
}