/* 保持您原有的所有CSS样式 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.nav-links {
    display: flex;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: #333;
    padding: 5px 10px;
}

.nav-link.active {
    color: #0073aa;
    border-bottom: 2px solid #0073aa;
}

/* 确保Elementor内容能够正常显示 */
.elementor-page .site-main,
.elementor-page .page-shell {
    width: 100%;
}

/* 确保所有Elementor小工具正常显示 */
.elementor-widget {
    overflow: visible;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}