/* 自定义底边栏样式 */
footer {
    background-color: var(--dark-bg);
    color: #f9f9f9;
    padding: 30px 0 15px; /* 减小顶部和底部内边距 */
}

.footer-content {
    display: flex;
    justify-content: center; /* 水平居中 */
    margin-bottom: 20px;
    max-width: 50%; /* 缩小大小到50% */
    margin-left: auto;
    margin-right: auto;
}

.footer-section.contact {
    text-align: center; /* 文本居中 */
}

.footer-section h3 {
    color: var(--light-text);
    font-size: 1.2rem; /* 减小标题字体大小 */
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 8px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 50%; /* 中心对齐装饰线 */
    transform: translateX(-50%);
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.contact-info p {
    margin-bottom: 0;
    color: #bbb;
    display: flex;
    align-items: center;
}

.contact-info p i {
    margin-right: 8px;
    color: var(--primary-color);
}

.footer-bottom {
    background-color: #1387C0; /* 使用蓝色主色调 */
    padding: 15px 0;
    text-align: center;
    font-size: 0.85rem;
    color: #FAEDD1; /* 使用浅米色作为文字颜色 */
}

/* 响应式设计 */
@media screen and (max-width: 768px) {
    .footer-content {
        max-width: 90%;
    }
    
    .contact-info {
        flex-direction: column;
        gap: 10px;
    }
}
