.footer-container {
    width: 100%;
    background-color: #E4EBFF;
    padding: 40px 0;
    margin-bottom: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    margin-right: 30px;
}

.footer-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #181C1F;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    text-decoration: none;
    color: var(--common_level2_base_color);
    font-size: 14px;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: var(--common_blue1_color);
}

.contact-info {
    font-size: 14px;
}

.contact-info .email {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.contact-info .email svg {
    width: 16px;
    height: 16px;
    margin-right: 4px;
}

.contact-info .contact-info-title {
    margin-right: 4px;
    white-space: nowrap;
}

.social-icons {
    display: flex;
}

.social-icons>*+* {
    margin-left: 20px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.2s;
    border: 1px solid var(--common_gray2_color);
    position: relative;
    cursor: pointer;
}

.social-icon svg {
    width: 30px;
    height: 30px;
    color: var(--common_gray2_color);
}

.social-icon:hover {
    border-color: var(--common_level1_base_color);
}

.social-icon:hover svg {
    color: var(--common_level1_base_color);
}

/* QR Code Popover Styles */
.qr-popover {
    position: absolute;
    bottom: 45px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    background-color: var(--common_fg_color);
    border-radius: 8px;
    box-shadow: 0 2px 12px var(--common_black4_color);
    padding: 16px;
    z-index: 100;
}

.qr-popover::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--common_fg_color);
}

/* Alpine.js transition classes */
.transition-opacity {
    transition: opacity 0.3s ease;
}

.opacity-0 {
    opacity: 0;
}

.opacity-100 {
    opacity: 1;
}

.qr-popover-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.qr-popover-content img {
    width: 160px;
    height: 160px;
    margin-bottom: 8px;
}

.qr-popover-text {
    text-align: center;
}

.qr-popover-text p {
    margin: 4px 0;
    font-size: 14px;
    color: var(--common_level1_base_color);
}

.footer-divider {
    height: 1px;
    background-color: var(--common_line_hard_color);
    margin: 48px auto;
    max-width: 1200px;
}

.footer-links {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.links-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 16px;
}

.links-list a {
    color: var(--common_level2_base_color);
    text-decoration: none;
    font-size: 12px;
    transition: color 0.2s;
    padding: 0 5px;
    border-right: 1px solid var(--common_line_hard_color);
}

.links-list a:last-child {
    border-right: none;
}

.links-list a:hover {
    color: var(--common_blue1_color);
}

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

.footer-copyright p {
    margin: 20px 0 5px;
}

.footer-copyright p a {
    color: var(--common_level2_base_color);
}

.footer-copyright p a+a {
    margin-left: 20px;
}